Authentication
Each API request must contain an authorization header in the following format to make a call: Bearer <your_access_token>.
Do not ever share your access tokens, JWT tokens, as these can be used to access your payments data and initiate transactions, refunds, and others.
In order to generate your access token, you need to follow the following process.
Use the /v1/oauth/token endpoint to request the access_token in order to access the system.
Retrieve an access token using client credentials.
Authorizations
Body
grant_typestringRequired
The type of grant request (e.g., 'client_credentials').
client_idstringRequired
The client identifier issued to the client.
Responses
200
Access token successfully obtained.
application/json
400
Invalid request parameters.
401
Unauthorized - Invalid client credentials.
post
/v1/oauth/tokenLast updated