{ "opencollection": "1.0.0", "info": { "name": "Optimizely Campaign REST Assets Tasks API", "version": "1.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Tasks", "type": "folder" }, "items": [ { "info": { "name": "List tasks", "type": "http" }, "http": { "method": "GET", "url": "https://api.campaign.episerver.net/rest/tasks", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of items to return" }, { "name": "offset", "value": "", "type": "query", "description": "Number of items to skip for pagination" } ] }, "docs": "Returns a list of content tasks and their current workflow status." }, { "info": { "name": "Create a task", "type": "http" }, "http": { "method": "POST", "url": "https://api.campaign.episerver.net/rest/tasks", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new content task with the specified configuration." }, { "info": { "name": "Get a task", "type": "http" }, "http": { "method": "GET", "url": "https://api.campaign.episerver.net/rest/tasks/:taskId", "params": [ { "name": "taskId", "value": "", "type": "path", "description": "The unique identifier for the task" } ] }, "docs": "Retrieves the details of a specific task by its identifier." }, { "info": { "name": "Update a task", "type": "http" }, "http": { "method": "PUT", "url": "https://api.campaign.episerver.net/rest/tasks/:taskId", "params": [ { "name": "taskId", "value": "", "type": "path", "description": "The unique identifier for the task" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the specified task with the provided fields." } ] } ], "bundled": true }