{ "opencollection": "1.0.0", "info": { "name": "PDFfiller REST Applications Callbacks API", "version": "2.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://api.pdffiller.com/v2/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Callbacks", "type": "folder" }, "items": [ { "info": { "name": "List all callbacks", "type": "http" }, "http": { "method": "GET", "url": "https://api.pdffiller.com/v2/callbacks", "params": [ { "name": "per_page", "value": "", "type": "query", "description": "Number of items per page" }, { "name": "page", "value": "", "type": "query", "description": "Page number" }, { "name": "order_by", "value": "", "type": "query", "description": "Field to sort results by" }, { "name": "order", "value": "", "type": "query", "description": "Sort order" } ] }, "docs": "Returns a list of all webhook callback configurations." }, { "info": { "name": "Create a callback", "type": "http" }, "http": { "method": "POST", "url": "https://api.pdffiller.com/v2/callbacks", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new webhook callback configuration for document events." }, { "info": { "name": "Get callback by ID", "type": "http" }, "http": { "method": "GET", "url": "https://api.pdffiller.com/v2/callbacks/:callback_id", "params": [ { "name": "callback_id", "value": "", "type": "path", "description": "Unique identifier for the callback" } ] }, "docs": "Returns information about a specific callback configuration." }, { "info": { "name": "Update a callback", "type": "http" }, "http": { "method": "PUT", "url": "https://api.pdffiller.com/v2/callbacks/:callback_id", "params": [ { "name": "callback_id", "value": "", "type": "path", "description": "Unique identifier for the callback" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing webhook callback configuration." }, { "info": { "name": "Delete a callback", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.pdffiller.com/v2/callbacks/:callback_id", "params": [ { "name": "callback_id", "value": "", "type": "path", "description": "Unique identifier for the callback" } ] }, "docs": "Removes the specified webhook callback configuration." }, { "info": { "name": "Get global callback", "type": "http" }, "http": { "method": "GET", "url": "https://api.pdffiller.com/v2/callbacks/global" }, "docs": "Returns the global webhook callback configuration that applies to all documents." }, { "info": { "name": "Update global callback", "type": "http" }, "http": { "method": "PUT", "url": "https://api.pdffiller.com/v2/callbacks/global", "body": { "type": "json", "data": "{}" } }, "docs": "Updates the global webhook callback configuration." }, { "info": { "name": "Delete global callback", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.pdffiller.com/v2/callbacks/global" }, "docs": "Removes the global webhook callback configuration." } ] } ], "bundled": true }