Register a dashboard user
Create a dashboard account. This also creates your CRM panel and returns its crm_id and primary api_key in the same response — there is no second step. Do not follow…
Create a dashboard account. This also creates your CRM panel and returns its crm_id and primary api_key in the same response — there is no second step. Do not follow it with POST /api/crm/register: that creates a separate panel with no dashboard user attached, which you cannot log into or manage.
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/register" \ -H "Content-Type: application/json" \ -d '{ "email": "[email protected]", "password": "string" }'{ "crm_id": "string", "email": "string", "email_verified": true, "name": "string", "success": true, "user_id": null}Resolve an API key to a panel GET
Resolves the API key sent in X-API-Key to its crm_id. This is how the hosted MCP server turns a bearer token into a tenant. Returns only public-safe fields (panel id, plan…
Dashboard user login POST
Authenticate a dashboard user. Rate limited to 6 requests/minute — the strictest limit in the API.