Users
Merge users
Merge two users together, where the user specified with the from_user_id param will be merged into the user specified by user_id.
post/v1/users/{user_id}/merge
Path parameters
user_idstring required
The id of the user to merge into.
Request body
Example request
{
"from_user_id": "user_1"
}Response
OK
Example response
{
"__typename": "User",
"created_at": null,
"email": "ian.malcolm@chaos.theory",
"id": "user_id",
"name": "Dr. Ian Malcolm",
"updated_at": "2024-05-22T12:00:00Z"
}