v1
latestOpenAPI 3.1.02026-07-24172151607.6 KBAuthorization
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
Example request
{
"client_id": "your_client_id",
"client_secret": "your_client_secret",
"code": "authorization_code"
}Response
Example response
{
"access_token": "access token"
}