Ir para o conteúdo

Autenticação

Endpoints

  • POST /api/v1/authenticate — Authenticates a client and returns the corresponding JWT token

POST /api/v1/authenticate

Authenticates a client and returns the corresponding JWT token

Corpo da Requisição

Client credentials (clientId e secretKey)

Campo Tipo Obrigatório Descrição
clientId string (uuid) Sim
secretKey string Sim (anulável)

Exemplo:

{
  "clientId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "secretKey": "string"
}

Respostas

200 Successful authentication

Schema: AuthApiResponse

400 Invalid credentials

Schema: ProblemDetails