{ "opencollection": "1.0.0", "info": { "name": "Optimizely Campaign REST Assets Experiments API", "version": "1.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Experiments", "type": "folder" }, "items": [ { "info": { "name": "List experiments", "type": "http" }, "http": { "method": "GET", "url": "https://api.campaign.episerver.net/rest/experiments", "params": [ { "name": "project_id", "value": "", "type": "query", "description": "The unique identifier for the project to filter by" }, { "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 experiments for the specified project." }, { "info": { "name": "Create an experiment", "type": "http" }, "http": { "method": "POST", "url": "https://api.campaign.episerver.net/rest/experiments", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new experiment within the specified project." }, { "info": { "name": "Get an experiment", "type": "http" }, "http": { "method": "GET", "url": "https://api.campaign.episerver.net/rest/experiments/:experiment_id", "params": [ { "name": "experiment_id", "value": "", "type": "path", "description": "The unique identifier for the experiment" } ] }, "docs": "Retrieves the full details of a specific experiment." }, { "info": { "name": "Update an experiment", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.campaign.episerver.net/rest/experiments/:experiment_id", "params": [ { "name": "experiment_id", "value": "", "type": "path", "description": "The unique identifier for the experiment" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the specified experiment with the provided fields." }, { "info": { "name": "Delete an experiment", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.campaign.episerver.net/rest/experiments/:experiment_id", "params": [ { "name": "experiment_id", "value": "", "type": "path", "description": "The unique identifier for the experiment" } ] }, "docs": "Archives or permanently deletes the specified experiment." }, { "info": { "name": "Get experiment results", "type": "http" }, "http": { "method": "GET", "url": "https://api.campaign.episerver.net/rest/experiments/:experiment_id/results", "params": [ { "name": "experiment_id", "value": "", "type": "path", "description": "The unique identifier for the experiment" } ] }, "docs": "Retrieves the statistical results for a specific experiment, including conversion rates, confidence intervals, and statistical significance computed by Stats Engine." } ] } ], "bundled": true }