Users

Identify User

POST
Identifies a user to the Dopt user API

Request

This endpoint expects an object.
identifier
stringRequired
properties
map from strings to anyRequired
groups
list of objectsOptional
POST
1curl -X POST https://users.dopt.com/identify \
2 -H "x-api-key: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "identifier": "string",
6 "properties": {
7 "string": {}
8 }
9}'