Create User

Create a new user account

POSThttps://api.jamdesk.com/api/v1/users

Creates a new user with the provided information.

Request Body

emailstringrequired

User email address.

displayNamestring

Display name.

passwordstringrequired

User password.

curl -X POST "https://api.example.com/v1/users" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "jane@example.com",
    "displayName": "Jane Doe",
    "password": "secure-password"
  }'
{
  "data": {
    "id": "user_456",
    "email": "jane@example.com",
    "displayName": "Jane Doe",
    "createdAt": "2024-01-15T10:30:00Z"
  }
}