{ "opencollection": "1.0.0", "info": { "name": "PDFfiller REST Applications Custom Logos 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": "Custom Logos", "type": "folder" }, "items": [ { "info": { "name": "List all custom logos", "type": "http" }, "http": { "method": "GET", "url": "https://api.pdffiller.com/v2/custom_branding/custom_logo", "params": [ { "name": "per_page", "value": "", "type": "query", "description": "Number of items per page" }, { "name": "page", "value": "", "type": "query", "description": "Page number" } ] }, "docs": "Returns a list of all custom branding logos." }, { "info": { "name": "Upload a custom logo", "type": "http" }, "http": { "method": "POST", "url": "https://api.pdffiller.com/v2/custom_branding/custom_logo", "body": { "type": "multipart-form", "data": [ { "name": "logo", "type": "text", "value": "" } ] } }, "docs": "Uploads a new custom branding logo." }, { "info": { "name": "Get custom logo by ID", "type": "http" }, "http": { "method": "GET", "url": "https://api.pdffiller.com/v2/custom_branding/custom_logo/:custom_logo_id", "params": [ { "name": "custom_logo_id", "value": "", "type": "path", "description": "Unique identifier for the custom logo" } ] }, "docs": "Returns information about a specific custom logo." }, { "info": { "name": "Delete a custom logo", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.pdffiller.com/v2/custom_branding/custom_logo/:custom_logo_id", "params": [ { "name": "custom_logo_id", "value": "", "type": "path", "description": "Unique identifier for the custom logo" } ] }, "docs": "Removes the specified custom branding logo." } ] } ], "bundled": true }