Skip to main content
GET
/
event-subscriptions
/
subscriptions
/
event
/
{event_type}
List subscriptions by event type
curl --request GET \
  --url https://panel.sendcloud.sc/api/v3/event-subscriptions/subscriptions/event/{event_type} \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": [
    {
      "id": 1,
      "connection_id": 1,
      "event_type": "parcels.event.created",
      "is_active": true,
      "created_at": "2026-01-15T11:00:00Z",
      "updated_at": "2026-01-15T11:00:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic Authentication using API key and secrets is currently the main authentication mechanism.

Path Parameters

event_type
enum<string>
required

The event type to filter subscriptions by.

Available options:
parcels.event.created

Response

OK

List of subscriptions filtered by event type

data
Subscription · object[]
required