cargopanel logocargopanel for developers

List Subscriptions

GEThttps://api.cargopanel.co/webhooks/subscriptions

Retrieve all webhook subscriptions for the authenticated user.

Example Response

200
{
  "success": true,
  "data": [
    {
      "id": "sub_abc123",
      "url": "https://example.com/webhooks",
      "events": ["shipment.status.updated"],
      "headers": {},
      "retryPolicy": {
        "maxRetries": 5,
        "initialDelayMs": 10000,
        "backoffMultiplier": 2,
        "maxDelayMs": 3600000
      },
      "isActive": true,
      "createdAt": "2026-06-20T14:30:00.000Z"
    }
  ]
}

Responses

200Subscriptions retrieved successfully
401Unauthorized (invalid or missing API key)