Developer Portal

Admin LoginPOST

Authenticate a back-office user (CRM/broker operator) and issue a bearer admin access token used to call this API. Tokens are valid for 30 days. Requests must originate from a whitelisted IP address.

View as Markdown
POST
/user/login

Authorization

Authorization<token>

Bearer access token issued by the admin login flow.

In: header

Request Body

application/jsonRequired
usernamestring
passwordstring
curl -X POST "https://example.com/user/login" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "username": "string",
    "password": "string"
  }'

A successful response.

{
  "token": "string"
}