{ "opencollection": "1.0.0", "info": { "name": "UP42 Catalog Webhooks API", "version": "2.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "Get webhooks", "type": "http" }, "http": { "method": "GET", "url": "https://api.up42.com/v2/webhooks" }, "docs": "Lists the webhooks registered for your account." }, { "info": { "name": "Create a webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.up42.com/v2/webhooks", "body": { "type": "json", "data": "{}" } }, "docs": "Registers a new webhook: a name, a unique HTTPS URL to receive events, a secret used to sign the payload, and the event types that trigger it." }, { "info": { "name": "Get a webhook", "type": "http" }, "http": { "method": "GET", "url": "https://api.up42.com/v2/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "", "type": "path" } ] }, "docs": "Retrieves a single webhook by ID." }, { "info": { "name": "Update a webhook", "type": "http" }, "http": { "method": "PUT", "url": "https://api.up42.com/v2/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Replaces the configuration of an existing webhook." }, { "info": { "name": "Delete a webhook", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.up42.com/v2/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "", "type": "path" } ] }, "docs": "Removes a webhook so it no longer receives events." }, { "info": { "name": "Get webhook events", "type": "http" }, "http": { "method": "GET", "url": "https://api.up42.com/v2/webhooks/events" }, "docs": "Lists the event types that a webhook can subscribe to (for example order.status and job.status changes)." } ] } ], "bundled": true }