v1

latestOpenAPI 3.1.02026-07-24172151607.6 KB
Authorization

Get Access Token

These are the routes for authing the API and going through the OAuth flow.

Applications utilizing a personal API token don't use this endpoint.

Note: OAuth tokens are not supported when using the Try It feature of our Reference docs. You can't try this endpoint from your web browser.

post/v2/oauth/token

Request body

client_idstring required

OAuth app client id

client_secretstring required

OAuth app client secret

codestring required

Code given in redirect url

Example request

{
  "client_id": "your_client_id",
  "client_secret": "your_client_secret",
  "code": "authorization_code"
}

Response

access_tokenstring required

Example response

{
  "access_token": "access token"
}
All 172 operations