Skip to main content
POST
cURL

Headers

Authorization
string
required

Basic authorization header with client credentials in the format 'Basic '

Body

application/x-www-form-urlencoded
grant_type
enum<string>
required

The type of grant being requested.

Available options:
client_credentials
Example:

"client_credentials"

scope
string
required

Scopes being requested. Must be a space-separated list of scopes.

Example:

"payments:read payments:write providers:read"

Response

Returns the access token

access_token
string
required

The JWT access token.

Example:

"YOUR_ACCESS_TOKEN"

token_type
string
required

Token type.

Example:

"Bearer"

expires_in
number
required

Expiration time of the token in seconds.

Example:

1800