> ## Documentation Index
> Fetch the complete documentation index at: https://developers.podero.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Register Application

> Create an OAuth2 application to access the Partner API

# Register a New Application

<Steps>
  <Step title="Log in to the Platform">
    Log in at [https://app.podero.com/accounts/login/](https://app.podero.com/accounts/login/) with the credentials you received.

    <Warning>
      It is strongly recommended that you change the password after your first login.
    </Warning>
  </Step>

  <Step title="Access the Application Portal">
    Visit [https://app.podero.com/oauth2/applications/register/](https://app.podero.com/oauth2/applications/register/) (or use your sandbox URL subdomain) to create a new client application.
  </Step>

  <Step title="Configure Your Application">
    Fill in the application details:

    | Field                        | Value                       |
    | ---------------------------- | --------------------------- |
    | **Name**                     | Your application name       |
    | **Client Type**              | Confidential                |
    | **Authorization Grant Type** | Client Credentials          |
    | **Redirect URIs**            | Not necessary (leave empty) |
  </Step>

  <Step title="Save Your Credentials">
    <Warning>
      **Immediately copy the client ID and the client secret and keep them somewhere safe.**

      You will not be able to retrieve your client secret later.
    </Warning>

    After copying your credentials, save the application.
  </Step>
</Steps>

<img src="https://mintcdn.com/podero-f8154181/Ga7g-ERxm1sGYWiL/images/partner-api/oauth-registration.png?fit=max&auto=format&n=Ga7g-ERxm1sGYWiL&q=85&s=87f525f552786b7d1865cbb51d79f858" alt="Application Registration" width="554" height="654" data-path="images/partner-api/oauth-registration.png" />

## What You Received

After registration, you should have:

* **Client ID**: A unique identifier for your application
* **Client Secret**: A secure key that proves your application's identity

<Tip>
  Store these credentials securely using environment variables or a secrets management system. Never commit them to source control.
</Tip>

## Next Step

<Card title="Get Access Token" icon="arrow-right" href="/partner-api/getting-started/get-access-token">
  Generate your first API access token
</Card>
