Skip to main content
Celoxis API v2
LiveUpdated 2 Sep 2026

Entity

Users

Retrieve and manage users, clone users and archive users.

Endpoints

GET/api/v2/usersRetrieve a list
GET/api/v2/users/{id}Retrieve one record
POST/api/v2/usersCreate records
PATCH/api/v2/usersUpdate records

Clone a user

POST/api/v2/users/{id}/cloneCreate a user from an existing user

Send only the properties that should differ from the source user.

Archive users

POST/api/v2/users/delete/{id1},{id2},…Archive up to 50 users

Only administrators can use this endpoint. This is a soft delete: archived users appear in the People Bin. Already archived users are skipped.

Optionally send p_to_uid to reassign work to another active user in the same company. Users cannot archive themselves or be their own replacement.

bash
curl -X POST \
  -H 'Authorization: bearer YourTokenHere' \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  --data 'p_to_uid=6' \
  'https://app.celoxis.com/psa/api/v2/users/delete/1,2,3'