Get JWT token
GET/clients/jwt/token
Get JWT Token for Client
This endpoint is used to retrieve a signed Bearer token (JWT) for client authentication.
Edit the Base URL
in request schema for switching between regions.
Request Headers
apikey
: Your private API key (required for authorization)
Query Parameters
-
expiryMins
(integer, required): Duration in minutes for which the token is valid- Must be ≥ 30 and ≤ 1440
-
extId
(string, optional): External ID of the user to associate with the token
Sample Request
Sample Response
{
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6..."
}
Response Fields
Field | Type | Description |
---|---|---|
token | Signed JWT bearer token |
Request
Responses
- 200
Successful response with JWT token