Skip to main content
POST
Token

Body

grant_type
string
required

One of: authorization_code, client_credentials, refresh_token

Example:

"authorization_code"

client_id
string
required
Example:

"your-client-id"

client_secret
string
required
Example:

"your-client-secret"

code
string

Authorization code (for authorization_code grant)

redirect_uri
string
Example:

"https://app.example.com/callback"

refresh_token
string

Refresh token (for refresh_token grant)

Response

Access token issued

access_token
string
required
Example:

"eyJhbGciOiJIUzI1NiIs..."

token_type
string
required
Example:

"Bearer"

expires_in
number
required
Example:

3600

refresh_token
string
Example:

"dGhpcyBpcyBhIHJlZnJlc2g..."

scope
string
Example:

"events.read webhooks.read"