Create project
POST/organization/projects
Create a new project in the organization. Projects can be created and archived, but cannot be deleted.
Body ParametersJSON
name: string
The friendly name of the project, this name appears in reports.
Returns
Create project
curl https://api.openai.com/v1/organization/projects \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"name": "name"
}'{
"id": "id",
"created_at": 0,
"name": "name",
"object": "organization.project",
"status": "active",
"archived_at": 0
}Returns Examples
{
"id": "id",
"created_at": 0,
"name": "name",
"object": "organization.project",
"status": "active",
"archived_at": 0
}