List Projects
List Projects
POST/api/2/auto_eval/project/list
List Projects.
Request
- application/json
Body
filters
object
query string
search query substring match for name and description
organizationId string
search only projects associated with specific organization
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
projects
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
deletedAt date-time
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
organizationId string
organizationName string
totalCount integerrequired
Total count of projects which can be listed with applicable filters, regardless of page size
{
"projects": [
{
"id": "string",
"createdAt": "2024-07-29T15:51:28.071Z",
"updatedAt": "2024-07-29T15:51:28.071Z",
"deletedAt": "2024-07-29T15:51:28.071Z",
"creatorId": "string",
"name": "string",
"description": "string",
"organizationId": "string",
"organizationName": "string"
}
],
"totalCount": 0
}
Loading...