Skip to main content
PATCH
/
v1
/
users
/
{uid}
/
merge
Merge User
curl --request PATCH \
  --url https://api.siit.io/v1/users/{uid}/merge \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "user_uid": "<string>"
}
'
{
  "result": {
    "uid": "<string>",
    "archived_at": "2023-11-07T05:31:56Z",
    "birthday_date": "2023-12-25",
    "city": "<string>",
    "country": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "department": "<string>",
    "department_uid": "<string>",
    "emails": [
      "<string>"
    ],
    "employee_number": "<string>",
    "first_name": "<string>",
    "full_name": "<string>",
    "hire_date": "2023-12-25",
    "job_leave_date": "2023-12-25",
    "job_start_date": "2023-12-25",
    "job_title": "<string>",
    "last_name": "<string>",
    "last_working_date": "2023-12-25",
    "legal_entity": "<string>",
    "legal_entity_uid": "<string>",
    "microsoft_entra_ids": [
      "<string>"
    ],
    "microsoft_entra_group_ids": [
      "<string>"
    ],
    "office_location": "<string>",
    "office_location_uid": "<string>",
    "preferred_language": "<string>",
    "probation_end_date": "2023-12-25",
    "report_to": "<string>",
    "report_to_uid": "<string>",
    "slack_user_id": "<string>",
    "status": "employee",
    "team_uids": [
      "<string>"
    ],
    "teams": [
      "<string>"
    ],
    "timezone": "<string>",
    "updated_at": "2023-11-07T05:31:56Z",
    "work_phone": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.siit.io/llms.txt

Use this file to discover all available pages before exploring further.

Merge the specified user into the one identified by the UID in the path. All data will be transferred, and the merged user will be permanently deleted. ⚠️ WARNING: This action is irreversible — once completed, the merged user cannot be recovered. ⚠️

Usage

Authorizations

Authorization
string
header
required

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

Path Parameters

uid
string
required

The UID of the user the target will be merged into.

Body

application/json
user_uid
string
required

The UID of the user that will be merged and subsequently deleted.

Response

Successful

result
object