{ "opencollection": "1.0.0", "info": { "name": "Fieldguide api webhooks API", "version": "v1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "webhooks", "type": "folder" }, "items": [ { "info": { "name": "List available Fieldguide Webhook subscriptions for the current User", "type": "http" }, "http": { "method": "GET", "url": "https://api.fieldguide.io/v1/webhooks", "params": [ { "name": "page", "value": "", "type": "query" }, { "name": "per_page", "value": "", "type": "query" }, { "name": "sort_order", "value": "", "type": "query", "description": "Sort order for paginated results. Use `desc` to reverse the default ascending order." } ] }, "docs": "List available Fieldguide Webhook subscriptions for the current User" }, { "info": { "name": "Create a new Webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.fieldguide.io/v1/webhooks", "body": { "type": "json", "data": "{}" } }, "docs": "Note: Webhooks on a development domain (mockable.io, ngrok-free.app, on.aws, onrender.com, run.app, webhook.site) are automatically deleted when delivery returns a 404, 410, or 501 response. They are also deleted after retries are exhausted on a persistent connection error (timeout, DNS failure, connection refused, or a recognized persistent TLS certificate failure)." }, { "info": { "name": "Update the specified Webhook", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.fieldguide.io/v1/webhooks/:uuid", "params": [ { "name": "uuid", "value": "", "type": "path", "description": "The UUID of the Webhook to update" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update the specified Webhook" }, { "info": { "name": "Delete the specified Webhook", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.fieldguide.io/v1/webhooks/:uuid", "params": [ { "name": "uuid", "value": "", "type": "path", "description": "The UUID of the Webhook to delete" } ] }, "docs": "Delete the specified Webhook" } ] } ], "bundled": true }