OAuthTokenResponse
Bearer token response used to authenticate protected v2 API calls.
access_tokenstring
Issued Bearer access token.
Example:
eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...token_typestring
Token type.
Example:
Bearerexpires_ininteger<int32>
Token lifetime in seconds.
Example:
3600scopestring
Granted scopes separated by spaces.
Example:
read:companies:acquirersOAuthTokenResponse
{
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
"token_type": "Bearer",
"expires_in": 3600,
"scope": "read:companies:acquirers"
}