Create Project
Create Project
POSThttps://lastmileai.dev/api/2/auto_eval/project/create
Create a new Project
Request
- application/json
Body
name stringrequired
Human-readable name for the project, if one exists.
description string
Human-readable description of the project, if one exists.
organizationId string
Organization to associate the project with, if applicable
Responses
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
project
object
required
{
"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"
}
}
Authorization: http
name: BearerAuthtype: httpscheme: bearerbearerFormat: JWT
- curl
- python
- javascript
- CURL
curl -L 'https://lastmileai.dev/api/2/auto_eval/project/create' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-d '{
"name": "string",
"description": "string",
"organizationId": "string"
}'
ResponseClear