Skip to main content
POST
/
v1
/
users
/
email-only
Manage email-only user
curl --request POST \
  --url https://{instance}.omniapp.co/api/v1/users/email-only \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "jsmith@example.com",
  "userAttributes": {}
}
'
{
  "email": "jsmith@example.com",
  "userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

Authorization
string
header
required

Use either an Organization API Key or Personal Access Token (PAT). Include in the Authorization header as: Bearer YOUR_TOKEN

Body

application/json
email
string<email>
required

Email address

userAttributes
object

Custom attributes including omni_user_timezone

Response

Email-only user created or updated

email
string<email>
userId
string<uuid>