Pular para o conteúdo principal

OAuthTokenResponse

Bearer token response used to authenticate protected v2 API calls.

access_tokenstring

Issued Bearer access token.

Example: eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...
token_typestring

Token type.

Example: Bearer
expires_ininteger<int32>

Token lifetime in seconds.

Example: 3600
scopestring

Granted scopes separated by spaces.

Example: read:companies:acquirers
OAuthTokenResponse
{
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
"token_type": "Bearer",
"expires_in": 3600,
"scope": "read:companies:acquirers"
}