OAuth 2.0
Token Endpoint
Use open source libraries to perform OAuth 2.0. You can find a list of libraries here: https://oauth.net/code/
POST
Body
application/x-www-form-urlencoded
The client ID of your integration (this can be found in your integration settings page).
The client secret of your integration (this can be found in your integration settings page).
The grant type. This should always be authorization_code
.
Available options:
authorization_code
Example:
"authorization_code"
The code which you received after redirecting from the /authorize
endpoint.