{ "opencollection": "1.0.0", "info": { "name": "Navan Bookings Webhooks API", "version": "1.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://app.navan.com/ta-auth/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "List webhook subscriptions", "type": "http" }, "http": { "method": "GET", "url": "https://api.navan.com/v1/expense/webhooks" }, "docs": "List configured webhook subscriptions. Navan documents webhooks as a first-class Expense API feature; the subscription-management path is MODELED because the detailed reference is gated." }, { "info": { "name": "Create a webhook subscription", "type": "http" }, "http": { "method": "POST", "url": "https://api.navan.com/v1/expense/webhooks", "body": { "type": "json", "data": "{}" } }, "docs": "Register a webhook endpoint to receive change notifications. MODELED." }, { "info": { "name": "Get a webhook subscription", "type": "http" }, "http": { "method": "GET", "url": "https://api.navan.com/v1/expense/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The webhook subscription ID." } ] }, "docs": "Retrieve a webhook subscription by ID. MODELED." }, { "info": { "name": "Delete a webhook subscription", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.navan.com/v1/expense/webhooks/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The webhook subscription ID." } ] }, "docs": "Delete a webhook subscription. MODELED." } ] } ], "bundled": true }