curl --request GET \
--url https://panel.sendcloud.sc/api/v3/event-subscriptions/subscriptions/{id} \
--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"
}
}Retrieve a specific subscription by its id.
curl --request GET \
--url https://panel.sendcloud.sc/api/v3/event-subscriptions/subscriptions/{id} \
--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"
}
}Basic Authentication using API key and secrets is currently the main authentication mechanism.
The id of the subscription.
OK
Subscription details
A subscription routes a specific event type to a connection for delivery.
Show child attributes