Skip to main content
GET
/
v1
/
object
/
{object_type}
/
{id}
/
subscription
List Object Subscriptions
curl --request GET \
  --url https://hub.suprsend.com/v1/object/{object_type}/{id}/subscription/ \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "count": 1,
    "limit": 10,
    "has_prev": true,
    "before": "<string>",
    "has_next": true,
    "after": "<string>"
  },
  "results": [
    {
      "user": {
        "distinct_id": "_distinct_id_",
        "updated_at": "2025-04-04T09:55:12.422Z"
      },
      "object": {
        "id": "frontend",
        "object_type": "frontend",
        "subscriptions_count": 123,
        "updated_at": "2025-04-04T09:55:12.422Z"
      },
      "properties": {},
      "created_at": "2025-04-04T09:55:12.397Z",
      "updated_at": "2025-04-04T09:55:12.422Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Pass as Bearer <API_KEY>. Get API Key from SuprSend dashboard Developers -> API Keys section.

Path Parameters

id
string
required

Unique identifier of the object in your system

object_type
string
required

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

Response

200

meta
object
results
object[]