Skip to main content
GET
/
api
/
v1
/
users
/
bulk-delete
/
jobs
Get Bulk User 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"
}

Authorizations

Authorization
string
header
required

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

Response

List of bulk delete jobs

id
string

Unique identifier for the bulk delete job

Example:

"507f1f77bcf86cd799439011"

statuses
object[]
lastUpdatedAt
string<date-time>

Job last update timestamp

Example:

"2025-10-08T11:00:00Z"

lastCreatedAt
string<date-time>

Job creation timestamp

Example:

"2025-10-08T10:30:00Z"

I