Create User
Create a new user account
POST
Creates a new user with the provided information.
Request Body
emailstringrequiredUser email address.
displayNamestringDisplay name.
passwordstringrequiredUser 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"
}
}