v2
latestOpenAPI 3.1.12026-07-2613060964.2 KBList Object Subscriptions
API to fetch a paginated list of users or child objects subscribed to a given object.
get/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.
Response
200
Example response
{
"meta": {
"count": 1,
"limit": 10
},
"results": [
{
"user": {
"distinct_id": "_distinct_id_",
"updated_at": "2025-04-04T09:55:12.422388+00:00"
},
"object": {
"id": "frontend",
"object_type": "frontend",
"updated_at": "2025-04-04T09:55:12.422388+00:00"
},
"created_at": "2025-04-04T09:55:12.397856+00:00",
"updated_at": "2025-04-04T09:55:12.422388+00:00"
}
]
}