{ "opencollection": "1.0.0", "info": { "name": "Optimizely Campaign REST Assets Projects API", "version": "1.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Projects", "type": "folder" }, "items": [ { "info": { "name": "List projects", "type": "http" }, "http": { "method": "GET", "url": "https://api.campaign.episerver.net/rest/projects", "params": [ { "name": "per_page", "value": "", "type": "query", "description": "Number of results per page" }, { "name": "page", "value": "", "type": "query", "description": "Page number for pagination" } ] }, "docs": "Returns a list of all Feature Experimentation projects accessible to the authenticated user." }, { "info": { "name": "Create a project", "type": "http" }, "http": { "method": "POST", "url": "https://api.campaign.episerver.net/rest/projects", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new Feature Experimentation project." }, { "info": { "name": "Get a project", "type": "http" }, "http": { "method": "GET", "url": "https://api.campaign.episerver.net/rest/projects/:project_id", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "The unique identifier for the project" } ] }, "docs": "Retrieves the details of a specific project by its unique identifier." }, { "info": { "name": "Update a project", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.campaign.episerver.net/rest/projects/:project_id", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "The unique identifier for the project" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the specified project with the provided fields." }, { "info": { "name": "Delete a project", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.campaign.episerver.net/rest/projects/:project_id", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "The unique identifier for the project" } ] }, "docs": "Permanently deletes the specified project and all associated resources including experiments, audiences, and events." } ] } ], "bundled": true }