{ "opencollection": "1.0.0", "info": { "name": "Hanko Admin Audit Logs Webhooks API", "version": "1.2.0" }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "Get a list of webhooks", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant_id}.hanko.io/admin/webhooks", "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns a list of all configured webhooks. " }, { "info": { "name": "Create a new database webhook", "type": "http" }, "http": { "method": "POST", "url": "https://{tenant_id}.hanko.io/admin/webhooks", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a new database webhook" }, { "info": { "name": "Get a webhook by ID", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant_id}.hanko.io/admin/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "UUID of the requested object" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get a webhook by ID" }, { "info": { "name": "Update a webhook by ID", "type": "http" }, "http": { "method": "PUT", "url": "https://{tenant_id}.hanko.io/admin/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "UUID of the requested object" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update a webhook by ID" }, { "info": { "name": "Delete a webhook by ID", "type": "http" }, "http": { "method": "DELETE", "url": "https://{tenant_id}.hanko.io/admin/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "UUID of the requested object" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete a webhook by ID" } ] } ], "bundled": true }