Experiments
List experiments
GET /experiments
Get list of experiments.
Path Parameters
Name
Type
Description
project_id
integer
Project id
Query Parameters
Name
Type
Description
_sort
string
Sort key
_order
string
Sorting order (ASC or DESC)
_start
integer
Start index
_end
integer
End index
[
{
"id": "0",
"user_id": "string",
"name": "string",
"artifact_location": "string",
"lifecycle_stage": "active",
"last_update_time": "2020-01-31T07:22:23.458Z",
"creation_time": "2020-01-31T07:22:23.458Z",
"description": "string",
"project_id": 0
}
]{
"code": "string",
"message": "string"
}{
"code": "string",
"message": "string"
}
Create experiment
POST /experiments
Create new experiment.
Path Parameters
Name
Type
Description
project_id
integer
Project id
Request Body
Name
Type
Description
name
string
Experiment name
description
string
Experiment description
user_id
string
User id (name)
Get experiment
GET /experiments/{experiment_id}
Get experiment.
Path Parameters
Name
Type
Description
experiment_id
string
Experiment id
Query Parameters
Name
Type
Description
project_id
integer
Project id
Delete experiment
DELETE /experiments/{experiment_id}
Delete experiment (mark as deleted).
Path Parameters
Name
Type
Description
experiment_id
string
Experiment id
Query Parameters
Name
Type
Description
project_id
integer
Project id
Last updated
Was this helpful?