{ "opencollection": "1.0.0", "info": { "name": "Strapi Admin Panel Admin Authentication Webhooks API", "version": "5.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "List webhooks", "type": "http" }, "http": { "method": "GET", "url": "https://{host}/admin/webhooks" }, "docs": "Returns a list of all configured webhooks in the Strapi admin panel." }, { "info": { "name": "Create a webhook", "type": "http" }, "http": { "method": "POST", "url": "https://{host}/admin/webhooks", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new webhook configuration with the specified URL, events, and headers." }, { "info": { "name": "Get a webhook", "type": "http" }, "http": { "method": "GET", "url": "https://{host}/admin/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the webhook" } ] }, "docs": "Returns a single webhook configuration by its ID." }, { "info": { "name": "Update a webhook", "type": "http" }, "http": { "method": "PUT", "url": "https://{host}/admin/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the webhook" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates a webhook configuration by its ID." }, { "info": { "name": "Delete a webhook", "type": "http" }, "http": { "method": "DELETE", "url": "https://{host}/admin/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the webhook" } ] }, "docs": "Deletes a webhook configuration by its ID." } ] } ], "bundled": true }