The Only API docs
Panel & Usage

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…

POST
/api/auth/register

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}