v2

latestOpenAPI 3.1.12026-07-2613060964.2 KB

Fetch Object subscriptions

API to fetch a paginated list of all parent objects that the given child object is subscribed to.

get/v1/object/{object_type}/{id}/subscribed_to/object/

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

limitinteger required

number of results to be returned in API response

afterinteger required

Response

200

Example response

{
  "meta": {
    "count": 1,
    "limit": 10
  },
  "results": [
    {
      "created_at": "2024-11-10T21:40:02.169501+00:00",
      "updated_at": "2024-11-10T21:40:02.169501+00:00"
    }
  ]
}