{ "opencollection": "1.0.0", "info": { "name": "Shipments Address Subscriptions API", "version": "3.0.0" }, "items": [ { "info": { "name": "Subscriptions", "type": "folder" }, "items": [ { "info": { "name": "List subscriptions", "type": "http" }, "http": { "method": "GET", "url": "https://panel.sendcloud.sc/api/v3/event-subscriptions/subscriptions", "params": [ { "name": "event_type", "value": "", "type": "query", "description": "Filter by event type." }, { "name": "is_active", "value": "", "type": "query", "description": "Filter by active status." } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Retrieve all subscriptions for the authenticated user's organization." }, { "info": { "name": "Create a subscription", "type": "http" }, "http": { "method": "POST", "url": "https://panel.sendcloud.sc/api/v3/event-subscriptions/subscriptions", "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Create a new subscription that routes events of a specific type to a connection." }, { "info": { "name": "Get a subscription", "type": "http" }, "http": { "method": "GET", "url": "https://panel.sendcloud.sc/api/v3/event-subscriptions/subscriptions/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The id of the subscription." } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Retrieve a specific subscription by its id." }, { "info": { "name": "Update a subscription", "type": "http" }, "http": { "method": "PATCH", "url": "https://panel.sendcloud.sc/api/v3/event-subscriptions/subscriptions/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The id of the subscription." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Update an existing subscription by its id. Only the fields provided in the request body will be updated." }, { "info": { "name": "Delete a subscription", "type": "http" }, "http": { "method": "DELETE", "url": "https://panel.sendcloud.sc/api/v3/event-subscriptions/subscriptions/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The id of the subscription." } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Delete a specific subscription by its id. Event delivery for this subscription will stop immediately." } ] } ], "bundled": true }