Skip to content

Authentication

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

Request Body

Client credentials (clientId e secretKey)

Field Type Required Description
clientId string (uuid) Yes
secretKey string Yes (nullable)

Example:

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

Responses

200 Successful authentication

Schema: AuthApiResponse

400 Invalid credentials

Schema: ProblemDetails