POST
/
v2
/
events
/
beta
/
link-users
curl --request POST \
  --url https://api.topsort.com/v2/events/beta/link-users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "from": "user123",
  "to": "user456"
}'
This response has no body data.

Authorizations

Authorization
string
header
required

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

Body

application/json
from
string
required

The opaque user ID of the original user account.

Required string length: 1 - 64
to
string
required

The opaque user ID of the target user account to be linked.

Required string length: 1 - 64