{ "opencollection": "1.0.0", "info": { "name": "Webex Admin Address Book Webhooks API", "version": "1.0.0" }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "List Webhooks", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/webhooks", "params": [ { "name": "max", "value": "100", "type": "query", "description": "Limit the maximum number of webhooks in the response." }, { "name": "ownedBy", "value": "org", "type": "query", "description": "Limit the result list to org wide webhooks. Only allowed value is `org`." } ] }, "docs": "List all of your webhooks." }, { "info": { "name": "Create a Webhook", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/webhooks", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a webhook.\n\nTo learn more about how to create and use webhooks, see The [Webhooks Guide](/docs/api/guides/webhooks)." }, { "info": { "name": "Get Webhook Details", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "Y2lzY29zcGFyazovL3VzL1dFQkhPT0svOTZhYmMyYWEtM2RjYy0xMWU1LWExNTItZmUzNDgxOWNkYzlh", "type": "path", "description": "The unique identifier for the webhook." } ] }, "docs": "Shows details for a webhook, by ID.\n\nSpecify the webhook ID in the `webhookId` parameter in the URI." }, { "info": { "name": "Update a Webhook", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "Y2lzY29zcGFyazovL3VzL1dFQkhPT0svOTZhYmMyYWEtM2RjYy0xMWU1LWExNTItZmUzNDgxOWNkYzlh", "type": "path", "description": "The unique identifier for the webhook." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates a webhook, by ID. You cannot use this call to deactivate a webhook, only to activate a webhook that was auto deactivated.\nThe fields that can be updated are `name`, `targetURL`, `secret` and `status`. All other fields, if supplied, are ignored.\n\nSpecify the webhook ID in the `webhookId` parameter in the URI." }, { "info": { "name": "Delete a Webhook", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/webhooks/:webhookId", "params": [ { "name": "webhookId", "value": "Y2lzY29zcGFyazovL3VzL1dFQkhPT0svOTZhYmMyYWEtM2RjYy0xMWU1LWExNTItZmUzNDgxOWNkYzlh", "type": "path", "description": "The unique identifier for the webhook." } ] }, "docs": "Deletes a webhook, by ID.\n\nSpecify the webhook ID in the `webhookId` parameter in the URI." } ] } ], "bundled": true }