GET
/
v1
/
object
/
{object_type}
/
{id}
/
subscribed_to
/
object
curl --request GET \
  --url https://hub.suprsend.com/v1/object/{object_type}/{id}/subscribed_to/object/ \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "count": 1,
    "limit": 10,
    "has_prev": false,
    "before": null,
    "has_next": false,
    "after": null
  },
  "results": [
    {
      "properties": {},
      "object": {
        "id": "frontend",
        "object_type": "developer",
        "properties": {
          "name": "frontend",
          "technology": "react"
        },
        "subscriptions_count": 3,
        "updated_at": "2024-11-10T21:41:02.673661+00:00"
      },
      "created_at": "2025-04-06T11:00:24.260496+00:00",
      "updated_at": "2025-04-06T11:00:24.260496+00:00"
    }
  ]
}

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.

Query Parameters

limit
integer
required

number of results to be returned in API response

after
integer
required

Response

200
application/json
200
meta
object
results
object[]