Pular para o conteúdo principal

OAuthRevokeRequest

Credentials and token used to revoke an OAuth 2.0 access token.

client_idstringrequired

Public OAuth client identifier provided by Destrava.

Example: preencher-com-client-id
client_secretstringrequired

OAuth client secret.

Example: preencher-com-client-secret
tokenstringrequired

Access token returned by the OAuth token endpoint.

Example: eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...
token_type_hintstring

Optional OAuth token type hint. The v2 API supports access_token.

Possible values: [access_token]

Example: access_token
OAuthRevokeRequest
{
"client_id": "preencher-com-client-id",
"client_secret": "preencher-com-client-secret",
"token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
"token_type_hint": "access_token"
}