The experiments api is the best way to retrieve data about your experiments. Experiments can be read or deleted using this endpoint.
Attribute | Type | Description |
---|---|---|
id | string | The Taplytics id for this experiment |
project_id | string | The id of the project where this experiment was created |
variations | list | A list of the variations contained within this experiment |
status | string | The status of this experiment. Can be draft , active , paused or archived |
Experiment
A single Experiment object with all its details
URL
https://api.taplytics.com/v2/experiments/{id}
Model
(application/json; charset=utf-8)
Body
{
"id": "548223f2c7036020742ff21c",
"project_id": "52718670ef1a872530000022",
"variations": [
"548223f2c7036020742ff21c",
"512263f2c79g607s142gf21h"
],
"winning_variation": "548223f2c7036020742ff21c",
"baseline_variation": "548223f2c7036020742ff21c",
"goal_ids": ["54ac360cc4d37a81567a72e7"],
"status": "active",
"description": "Disables the Buy button",
"min_app_version": "1.0",
"max_app_version": "1.8.4",
"filters": {
"version": "1.2.3",
"os_version": "4.4.4"
},
"created_at": "2015-01-06T03:51:57+00:00",
"updated_at": "2015-01-06T03:51:57+00:00"
}