v2

latestOpenAPI 3.1.12026-07-2613060964.2 KB

Remove Object Subscriptions

API to remove object subscribers (users or child objects).

delete/v1/object/{object_type}/{id}/subscription/

Path parameters

idstring required

Unique identifier of the object in your system

object_typestring required

Used to group similar objects together. Give plural namespace like teams, organizations, and roles.

Query parameters

recipientsstring required

List of recipients to be notified. Provide recipient IDs as a comma-separated list (e.g., id1,id2,id3).

Request body

Example request

{
  "recipients": [
    {
      "id": "frontend"
    }
  ]
}

Response

204 - No Content