The Only API docs
Panel & Usage

Dashboard user login

Authenticate a dashboard user. Rate limited to 6 requests/minute — the strictest limit in the API.

POST
/api/auth/login

Authenticate a dashboard user. Rate limited to 6 requests/minute — the strictest limit in the API.

Guide: Base URL & panels

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/auth/login" \  -H "Content-Type: application/json" \  -d '{    "email": "[email protected]",    "password": "string"  }'
{  "crm_id": "string",  "email": "string",  "is_admin": null,  "name": "string",  "success": true,  "user_id": null}