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.

  1. Upload your public key in your account

  2. Use your company id as your client_id, and set the Authorization header as Bearer ${jwt}

  3. Use the /v1/oauth/token endpoint to request the access_token in order to access the system.

Obtain Access Token

post
/v1/oauth/token

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
post
/v1/oauth/token

Last updated