curl --request GET \
--url https://panel.sendcloud.sc/api/v3/event-subscriptions/connections/{id} \
--header 'Authorization: Basic <encoded-value>'{
"data": {
"id": 1,
"type": "webhook",
"configuration": {
"url": "https://example.com/webhooks/sendcloud",
"auth_type": "bearer",
"extra_headers": {
"X-Custom-Header": "my-value"
}
},
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-15T10:30:00Z"
}
}Retrieve a specific connection by its id.
curl --request GET \
--url https://panel.sendcloud.sc/api/v3/event-subscriptions/connections/{id} \
--header 'Authorization: Basic <encoded-value>'{
"data": {
"id": 1,
"type": "webhook",
"configuration": {
"url": "https://example.com/webhooks/sendcloud",
"auth_type": "bearer",
"extra_headers": {
"X-Custom-Header": "my-value"
}
},
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-15T10:30:00Z"
}
}Basic Authentication using API key and secrets is currently the main authentication mechanism.
The id of the connection.
OK
Connection details
A connection defines an external endpoint where event notifications are delivered.
Show child attributes