{ "opencollection": "1.0.0", "info": { "name": "HeyMilo Public ATS Webhooks API", "version": "2.0.0" }, "request": { "auth": { "type": "apikey", "key": "X-API-KEY", "value": "{{X-API-KEY}}", "placement": "header" } }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "List webhooks", "type": "http" }, "http": { "method": "GET", "url": "https://api.heymilo.ai/api/v2/webhooks", "headers": [ { "name": "X-API-KEY", "value": "" }, { "name": "Authorization", "value": "" }, { "name": "X-Workspace-Id", "value": "" } ], "params": [ { "name": "limit", "value": "", "type": "query" }, { "name": "starting_after", "value": "", "type": "query" } ] }, "docs": "Retrieve all active webhooks for the authenticated workspace." }, { "info": { "name": "Register a webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.heymilo.ai/api/v2/webhooks", "headers": [ { "name": "X-API-KEY", "value": "" }, { "name": "Authorization", "value": "" }, { "name": "X-Workspace-Id", "value": "" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Register a webhook URL to receive event notifications. Events include candidate completion, interview status changes, etc." }, { "info": { "name": "Get webhook details", "type": "http" }, "http": { "method": "GET", "url": "https://api.heymilo.ai/api/v2/webhooks/:webhook_id", "headers": [ { "name": "X-API-KEY", "value": "" }, { "name": "Authorization", "value": "" }, { "name": "X-Workspace-Id", "value": "" } ], "params": [ { "name": "webhook_id", "value": "", "type": "path" } ] }, "docs": "Retrieve details of a specific registered webhook by ID." }, { "info": { "name": "Deactivate a webhook", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.heymilo.ai/api/v2/webhooks/:webhook_id", "headers": [ { "name": "X-API-KEY", "value": "" }, { "name": "Authorization", "value": "" }, { "name": "X-Workspace-Id", "value": "" } ], "params": [ { "name": "webhook_id", "value": "", "type": "path" } ] }, "docs": "Deactivate (soft-delete) a webhook by ID." } ] } ], "bundled": true }