Authenticate and get access token

This unauthenticated endpoint is used to get the JWT that must be used in the header of every other request.

Request
Request Body schema: application/json
clientId
string
clientSecret
string
Responses
200

The authentication token which needs to be passed in X-Authorization header for all the requests

post/auth/v1
Request samples
application/json

Authentication Request

{
  • "clientId": "ABCD1234",
  • "clientSecret": "ABCD1234ABCD1234ABCD1234ABCD1234ABCD1234"
}
Response samples
application/json

Successful Authentication Response

{
  • "idToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiw.KMUFsIDTnFmyG3nMiGM6H9",
  • "validUntilDate": "2025-04-01T12:00:00Z"
}