Autenticação

Autenticação para receber o JSON Web Token (JWT)

As chaves serão passadas pelo nosso time comercial.

Endpoints

POST Body

Chave
Valor

client_id

ClientId

client_secret

ClientSecret

grant_type

client_credentials

Content-Type

application/x-www-form-urlencoded

Response

{
  "access_token": "valor",
  "expires_in": 1800,
  "refresh_expires_in": 0,
  "token_type": "Bearer",
  "not-before-policy": 1685628261,
  "scope": "email openid profile"
}

Last updated