Skip to main content
POST
/
api
/
v1
/
identities
curl -X POST "https://api.orwel.io/api/v1/identities" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"email": "user@example.com", "name": "John Doe"}'
{
  "data": {
    "id": "ff0e8400-e29b-41d4-a716-446655440010",
    "email": "user@example.com",
    "name": "John Doe"
  }
}

Request Body

email
string
Email address
name
string
Full name
traits
object
Custom traits
curl -X POST "https://api.orwel.io/api/v1/identities" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"email": "user@example.com", "name": "John Doe"}'
{
  "data": {
    "id": "ff0e8400-e29b-41d4-a716-446655440010",
    "email": "user@example.com",
    "name": "John Doe"
  }
}