Bulk Delete Memberships
DELETE {{baseUrl}}/api/v2/organization_memberships/destroy_many?ids=<integer>&ids=<integer>
Immediately removes a user from an organization and schedules a job to unassign all working tickets currently assigned to the user and organization combination. The organization_id
of the unassigned tickets is set to null.
Response
This endpoint returns a job_status
JSON object and queues a background job to do the work. Use the Show Job Status endpoint to check for the job's completion.
Allowed For
- Agents
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
ids | string | The IDs of the organization memberships to delete | |
ids | string | The IDs of the organization memberships to delete |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string |
RESPONSES
status: OK
{"job_status":{"id":"82de0b044094f0c67893ac9fe64f1a99","message":"Completed at 2018-03-08 10:07:04 +0000","progress":2,"results":[{"action":"delete","id":244,"status":"Deleted","success":true},{"action":"delete","id":245,"status":"Deleted","success":true}],"status":"completed","total":2,"url":"https://example.zendesk.com/api/v2/job_statuses/82de0b0467893ac9fe64f1a99.json"}}