{ "opencollection": "1.0.0", "info": { "name": "Kiteworks API Documentation activities webhook API", "version": "28" }, "items": [ { "info": { "name": "webhook", "type": "folder" }, "items": [ { "info": { "name": "Get all webhooks", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/webhooks", "params": [ { "name": "offset", "value": "", "type": "query", "description": "Offset value (must be 0 or a positive integer)" }, { "name": "limit", "value": "", "type": "query", "description": "Limit count (must be 0 or a positive integer)" } ] }, "docs": "Retrieves a list of all webhooks with optional pagination" }, { "info": { "name": "Create a new webhook", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/webhooks", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new webhook based on the body content" }, { "info": { "name": "Get a specific webhook", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the webhook" } ] }, "docs": "Retrieves a specific webhook by its ID" }, { "info": { "name": "Update a webhook", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the webhook" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing webhook" }, { "info": { "name": "Partially update a webhook", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the webhook" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates specific fields of an existing webhook without requiring all fields to be present" }, { "info": { "name": "Delete a webhook", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the webhook" } ] }, "docs": "Deletes an existing webhook by its ID" } ] } ], "bundled": true }