API User

Indentify

POST
Indentify an api user

Request

This endpoint expects an object.
email
stringRequired
firstName
stringOptional
lastName
stringOptional
company
stringOptional
anonymousId
stringOptional

Response

This endpoint returns any
POST
1curl -X POST https://api.beta.superagent.sh/api/v1/api-users/identify \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "email": "email"
6}'
200
Successful
1{
2 "key": "value"
3}