OAuth 2.0
Authorize Endpoint
Use open source libraries to perform OAuth 2.0. You can find a list of libraries here: https://oauth.net/code/
GET
Query Parameters
The client ID of your integration (this can be found in your integration settings page).
The response type. This should always be code
.
Available options:
code
The URL to redirect to after the user has authorized the integration. This URL must exactly match one of the registered redirect URLs in your integration settings page.
A random string to prevent CSRF attacks. You should set this when starting the OAuth flow and check that when the user is redirected back to your app that it matches this value.
Response
302 - application/json
After the user approves the connection, they are sent to the redirect_uri with an authorization code.
The response is of type object
.