{ "opencollection": "1.0.0", "info": { "name": "Pollfish Apps API", "version": "2026.07" }, "items": [ { "info": { "name": "Apps", "type": "folder" }, "items": [ { "info": { "name": "List apps", "type": "http" }, "http": { "method": "GET", "url": "https://www.pollfish.com/api/public/v2/apps", "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Returns an array of the authenticated developer's apps." }, { "info": { "name": "Create an app", "type": "http" }, "http": { "method": "POST", "url": "https://www.pollfish.com/api/public/v2/apps", "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Creates a new publisher app (monetization placement) and returns its api_key." }, { "info": { "name": "Get an app", "type": "http" }, "http": { "method": "GET", "url": "https://www.pollfish.com/api/public/v2/apps/:api_key", "params": [ { "name": "api_key", "value": "", "type": "path", "description": "The app's api_key." } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Returns a single app object by its api_key." }, { "info": { "name": "Update an app", "type": "http" }, "http": { "method": "PUT", "url": "https://www.pollfish.com/api/public/v2/apps/:api_key", "params": [ { "name": "api_key", "value": "", "type": "path", "description": "The app's api_key." } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Updates properties of an existing app. Only supplied fields are changed." }, { "info": { "name": "Delete an app", "type": "http" }, "http": { "method": "DELETE", "url": "https://www.pollfish.com/api/public/v2/apps/:api_key", "params": [ { "name": "api_key", "value": "", "type": "path", "description": "The app's api_key." } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Deletes an app by its api_key." } ] } ], "bundled": true }