{ "opencollection": "1.0.0", "info": { "name": "Gladly Agents Webhooks API", "version": "1.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "List Webhooks", "type": "http" }, "http": { "method": "GET", "url": "https://{organization}.gladly.com/api/v1/api/v1/webhooks" }, "docs": "Returns a list of webhooks.\n" }, { "info": { "name": "Create Webhook", "type": "http" }, "http": { "method": "POST", "url": "https://{organization}.gladly.com/api/v1/api/v1/webhooks", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new webhook with the supplied data. The webhook will be in disabled state by default.\n\nIf creating a new enabled webhook, your service is expected to respond to a [Ping Event](#section/Ping-Event).\n\nYou are limited to 20 webhooks for your organization.\n" }, { "info": { "name": "Get Webhook", "type": "http" }, "http": { "method": "GET", "url": "https://{organization}.gladly.com/api/v1/api/v1/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "", "type": "path", "description": "id of the webhook" } ] }, "docs": "Get a webhook by ID\n" }, { "info": { "name": "Update Webhook", "type": "http" }, "http": { "method": "PATCH", "url": "https://{organization}.gladly.com/api/v1/api/v1/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "", "type": "path", "description": "id of the webhook" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update webhook by id.\n\nIf enabling a webhook or updating a webhook's URL, your service is expected to respond to a [Ping Event](#section/Ping-Event).\n" }, { "info": { "name": "Delete Webhook", "type": "http" }, "http": { "method": "DELETE", "url": "https://{organization}.gladly.com/api/v1/api/v1/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "", "type": "path", "description": "id of the webhook" } ] }, "docs": "Delete a webhook by ID\n" } ] } ], "bundled": true }