Skip to main content
POST
/
identify
Merge anonymous user with identified user
curl --request POST \
  --url https://api.hacktionbase.com/v1/identify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "anonymousId": "<string>",
  "externalId": "<string>"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
anonymousId
string
required
externalId
string
required

Response

202

Accepted