{ "opencollection": "1.0.0", "info": { "name": "PDFfiller REST Applications Tokens 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": "Tokens", "type": "folder" }, "items": [ { "info": { "name": "List all tokens", "type": "http" }, "http": { "method": "GET", "url": "https://api.pdffiller.com/v2/tokens", "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 embedded document tokens." }, { "info": { "name": "Create a token", "type": "http" }, "http": { "method": "POST", "url": "https://api.pdffiller.com/v2/tokens", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new embedded document token for embedding PDFfiller in third-party applications." }, { "info": { "name": "Get token by ID", "type": "http" }, "http": { "method": "GET", "url": "https://api.pdffiller.com/v2/tokens/:token_id", "params": [ { "name": "token_id", "value": "", "type": "path", "description": "Unique identifier for the token" } ] }, "docs": "Returns information about a specific embedded document token." }, { "info": { "name": "Update a token", "type": "http" }, "http": { "method": "PUT", "url": "https://api.pdffiller.com/v2/tokens/:token_id", "params": [ { "name": "token_id", "value": "", "type": "path", "description": "Unique identifier for the token" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing embedded document token." }, { "info": { "name": "Delete a token", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.pdffiller.com/v2/tokens/:token_id", "params": [ { "name": "token_id", "value": "", "type": "path", "description": "Unique identifier for the token" } ] }, "docs": "Removes the specified embedded document token." } ] } ], "bundled": true }