v1

latestOpenAPI 3.0.42026-07-2271315.1 KB
Authentication API

Get Partner Token

Application-level token. Exchange your client_id and secret_key for a partner access token, which is used to mint individual user tokens.

post/oauth/partner/access-token

Headers

Content-Typestring required

Response

Partner access token issued

access_tokenstring

The partner access token.

refresh_tokenstring

Token used to obtain a new partner access token before expiry.

token_typestring

The token type.

expires_ininteger

Lifetime of the access token, in seconds.

Example response

{
  "token_type": "bearer",
  "expires_in": 3600
}
All 7 operations