List Experiments
List Experiments
POST/api/2/auto_eval/experiment/list
List Experiments.
Request
- application/json
Body
filters
object
query string
search query substring match for name and description
projectId string
search only experiments associated with specific project
pageIndex integer
pageSize integer
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
experiments
object[]
required
id stringrequired
createdAt date-timerequired
A summary is retrieved for a time range from start_time to end_time If no end_time is provided, current time is used
updatedAt date-timerequired
A summary is retrieved for a time range from start_time to end_time If no end_time is provided, current time is used
creatorId string
name stringrequired
description string
projectId stringrequired
metadata
object
fields
object
required
property name*
object
Ordered row values with length always equal to num_rows
on the
corresponding view.
property name* any
Ordered row values with length always equal to num_rows
on the
corresponding view.
totalCount integerrequired
Total count of experiments which can be listed with applicable filters, regardless of page size
{
"experiments": [
{
"id": "string",
"createdAt": "2024-07-29T15:51:28.071Z",
"updatedAt": "2024-07-29T15:51:28.071Z",
"creatorId": "string",
"name": "string",
"description": "string",
"projectId": "string",
"metadata": {
"fields": {}
}
}
],
"totalCount": 0
}
Loading...