keelwave
API ReferenceAuth

Register a new user

POST
/auth/register

Request Body

application/json

Registration payload

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/auth/register" \  -H "Content-Type: application/json" \  -d '{    "email": "string",    "password": "stringst"  }'
{  "organizations": [    {      "created_at": "string",      "id": "string",      "name": "string"    }  ],  "user": {    "created_at": "string",    "email": "string",    "id": "string",    "is_verified": true,    "name": "string",    "verified_at": "string"  }}