Create a new project in the organization. Projects can be created and archived, but cannot be deleted.
POST
/organization/projects
curl \
--request POST 'https://api.openai.com/v1/organization/projects' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"name":"string"}'
Request examples
{
"name": "string"
}
Response examples (200)
{
"id": "string",
"object": "organization.project",
"name": "string",
"created_at": 42,
"archived_at": 42,
"status": "active"
}