Create multiple end users in a single bulk action
Security
ApiKeyAuth(Required scopes: organization.member)
POST
curl -i -X POST \
https://dev.dixa.io/beta/endusers/bulk \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"data": [
{
"displayName": "Alice Brown",
"email": "alice@brown.com",
"phoneNumber": "+551155256325",
"additionalEmails": [],
"additionalPhoneNumbers": [],
"firstName": "Alice",
"lastName": "Brown",
"middleNames": [],
"avatarUrl": "http://avatar.url",
"externalId": "#12345678"
}
]
}'Response
{ "data": [ { … }, { … }, { … }, { … }, { … } ] }