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
updatedAt date-timerequired
deletedAt date-time
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...