{ "opencollection": "1.0.0", "info": { "name": "VAST API Swagger Schema activedirectory webhooks API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "ApiToken", "value": "{{ApiToken}}", "placement": "header" } }, "items": [ { "info": { "name": "webhooks", "type": "folder" }, "items": [ { "info": { "name": "List Webhooks", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/webhooks/" }, "docs": "This endpoint lists webhooks." }, { "info": { "name": "Create Webhook", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/webhooks/", "body": { "type": "json", "data": "{}" } }, "docs": "This endpoint creates a webhook." }, { "info": { "name": "Return Details of a webhook", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/webhooks/:id/", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "This endpoint returns the details of a webhook." }, { "info": { "name": "Modify Webhook", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/webhooks/:id/", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "This endpoint modifies a webhook." }, { "info": { "name": "Delete a Webhook", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/webhooks/:id/", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "This endpoint deletes a webhook." } ] } ], "bundled": true }