Client Token API
This document describes the available endpoints under /api/client for client integrations.
Authentication
POST /api/client/token/
Obtain a JWT token for client API access.
Request Body
{
"clientId": string,
"clientSecret": string
}
Response:
200 OK:{ token: string }400 Bad Request:{ error: string }401 Unauthorized:{ error: string }500 Internal Server Error:{ error: string }