{ "opencollection": "1.0.0", "info": { "name": "Shipments Address Connections API", "version": "3.0.0" }, "items": [ { "info": { "name": "Connections", "type": "folder" }, "items": [ { "info": { "name": "List connections", "type": "http" }, "http": { "method": "GET", "url": "https://panel.sendcloud.sc/api/v3/event-subscriptions/connections", "params": [ { "name": "connection_type", "value": "", "type": "query", "description": "Filter by connection type." } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Retrieve all connections for the authenticated user's organization." }, { "info": { "name": "Create a connection", "type": "http" }, "http": { "method": "POST", "url": "https://panel.sendcloud.sc/api/v3/event-subscriptions/connections", "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Create a new connection to an external endpoint where event notifications will be delivered." }, { "info": { "name": "Get a connection", "type": "http" }, "http": { "method": "GET", "url": "https://panel.sendcloud.sc/api/v3/event-subscriptions/connections/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The id of the connection." } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Retrieve a specific connection by its id." }, { "info": { "name": "Update a connection", "type": "http" }, "http": { "method": "PATCH", "url": "https://panel.sendcloud.sc/api/v3/event-subscriptions/connections/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The id of the connection." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Update an existing connection by its id. Only the fields provided in the request body will be updated." }, { "info": { "name": "Delete a connection", "type": "http" }, "http": { "method": "DELETE", "url": "https://panel.sendcloud.sc/api/v3/event-subscriptions/connections/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The id of the connection." } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Delete a specific connection by its id. Any subscriptions associated with this connection will also be deleted." } ] } ], "bundled": true }