Get Default Project
Get Default Project
POST/api/2/auto_eval/project/get_default
Get the default project for the user or organization
Request
- application/json
Body
organizationId string
If provided, will get the default project for the organization Otherwise, will retrieve the default project for the user or organization associated with the api key used
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
project
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
{
"project": {
"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"
}
}
Loading...