{ "opencollection": "1.0.0", "info": { "name": "PDFfiller REST Applications 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": "Applications", "type": "folder" }, "items": [ { "info": { "name": "List all applications", "type": "http" }, "http": { "method": "GET", "url": "https://api.pdffiller.com/v2/applications", "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 OAuth applications for the authenticated user." }, { "info": { "name": "Create an application", "type": "http" }, "http": { "method": "POST", "url": "https://api.pdffiller.com/v2/applications", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new OAuth application." }, { "info": { "name": "Get application by ID", "type": "http" }, "http": { "method": "GET", "url": "https://api.pdffiller.com/v2/applications/:application_id", "params": [ { "name": "application_id", "value": "", "type": "path", "description": "Unique identifier for the application" } ] }, "docs": "Lists information about the specified application." }, { "info": { "name": "Update an application", "type": "http" }, "http": { "method": "PUT", "url": "https://api.pdffiller.com/v2/applications/:application_id", "params": [ { "name": "application_id", "value": "", "type": "path", "description": "Unique identifier for the application" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing OAuth application." }, { "info": { "name": "Delete an application", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.pdffiller.com/v2/applications/:application_id", "params": [ { "name": "application_id", "value": "", "type": "path", "description": "Unique identifier for the application" } ] }, "docs": "Deletes the specified OAuth application." }, { "info": { "name": "List application users", "type": "http" }, "http": { "method": "GET", "url": "https://api.pdffiller.com/v2/applications/:application_id/users", "params": [ { "name": "application_id", "value": "", "type": "path", "description": "Unique identifier for the application" }, { "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": "Retrieves a list of users who authorized with the specified application." } ] } ], "bundled": true }