GET
/
v1
/
tenant
/
{tenant_id}
/
category
curl --request GET \
  --url https://hub.suprsend.com/v1/tenant/{tenant_id}/category/ \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "count": 12,
    "limit": 10,
    "offset": 0
  },
  "results": [
    {
      "name": "Status Update Alert",
      "category": "status-update-alert",
      "description": "Send me updates when account status changes",
      "root_category": "transactional",
      "default_preference": "opt_in",
      "default_mandatory_channels": null,
      "visible_to_subscriber": true,
      "preference": "opt_in",
      "mandatory_channels": null,
      "blocked_channels": null
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

tenant_id
string
required

unique identifier of the tenant you want to get default preferences for

Response

200
application/json
200
meta
object
results
object[]