Users

Identify Users

POST
Identifies users to the Dopt users API (limited to 100 users per request)

Request

This endpoint expects a list of objects.
identifier
stringRequired
properties
map from strings to anyRequired
groups
list of objectsOptional

Response

This endpoint returns an object
count
double
POST
1curl -X POST https://users.dopt.com/identify/batch \
2 -H "x-api-key: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '[
5 {
6 "identifier": "string",
7 "properties": {
8 "string": {}
9 }
10 }
11]'
200
Successful
1{
2 "count": 1
3}