Skip to main content
GET
/
event-subscriptions
/
connections
/
type
/
{connection_type}
List connections by type
curl --request GET \
  --url https://panel.sendcloud.sc/api/v3/event-subscriptions/connections/type/{connection_type} \
  --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"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

connection_type
enum<string>
required

The type of connections to retrieve.

Available options:
webhook,
klaviyo

Response

OK

List of connections filtered by type

data
Connection ยท object[]
required