Skip to main content
GET
Authorize

Authorize

Start the OAuth authorization flow by redirecting users to the authorization endpoint. Users will grant permission to your application and be redirected back with an authorization code.
string
required
Your OAuth client ID obtained from the dashboard
string
required
The redirect URI registered with your OAuth client. Must exactly match the registered URI.
string
required
Must be set to code for authorization code flow
string
required
The scope of access requested. Use * for full access.
After the user authorizes your application, they will be redirected to your redirect_uri with an authorization code:
The authorization code is single-use and expires quickly. Exchange it for an access token immediately.

Query Parameters

client_id
string
required

Your OAuth client ID obtained from the dashboard

redirect_uri
string<uri>
required

The redirect URI registered with your OAuth client. Must exactly match the registered URI.

response_type
enum<string>
default:code
required

Must be set to 'code' for authorization code flow

Available options:
code
scope
string
default:*
required

The scope of access requested. Use '*' for full access.

Response

Redirect to redirect_uri with authorization code