RyTask docs
REST APIAuth

Register (only when org allowPublicSignup=true; otherwise invite-only) (FR-AUTH-001)

View as MarkdownOpen in ChatGPTOpen in Claude
POST
/auth/register

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/auth/register" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "email": "user@example.com",    "password": "pa$$word"  }'
{  "accessToken": "string",  "refreshToken": "string",  "expiresIn": 0,  "user": {    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",    "email": "user@example.com",    "name": "string",    "emailVerified": true  }}
Empty
Empty
{  "code": "string",  "message": "string",  "details": {}}