Skip to main content

Create Project

Create Project

POST 

https://lastmileai.dev/api/2/auto_eval/project/create

Create a new Project

Request

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

Successful operation

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

Authorization: http

name: BearerAuthtype: httpscheme: bearerbearerFormat: JWT
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"
}'
Request Collapse all
Base URL
https://lastmileai.dev
Auth
Body
{
  "name": "string",
  "description": "string",
  "organizationId": "string"
}
ResponseClear

Click the Send API Request button above and see the response here!