Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
List of bulk delete jobs
curl --request GET \
--url https://apix.us.amity.co/api/v1/users/bulk-delete/jobs \
--header 'Authorization: Bearer <token>'
{
"id": "507f1f77bcf86cd799439011",
"statuses": [
{
"status": "WAITING",
"_id": "<string>"
}
],
"lastUpdatedAt": "2025-10-08T11:00:00Z",
"lastCreatedAt": "2025-10-08T10:30:00Z"
}
Retrieve the list of bulk user delete jobs. This endpoint returns all bulk deletion jobs for the network with their current status. Requires admin permissions.
curl --request GET \
--url https://apix.us.amity.co/api/v1/users/bulk-delete/jobs \
--header 'Authorization: Bearer <token>'
{
"id": "507f1f77bcf86cd799439011",
"statuses": [
{
"status": "WAITING",
"_id": "<string>"
}
],
"lastUpdatedAt": "2025-10-08T11:00:00Z",
"lastCreatedAt": "2025-10-08T10:30:00Z"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
List of bulk delete jobs