Skip to main content
POST
/
v1
/
users
/
email-only
/
bulk
Bulk manage email-only users
curl --request POST \
  --url https://{instance}.omniapp.co/api/v1/users/email-only/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "users": [
    {
      "email": "jsmith@example.com",
      "userAttributes": {}
    }
  ]
}
'
{
  "results": [
    {
      "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
users
object[]
required
Maximum array length: 20

Response

Email-only users created or updated

results
object[]