POST
/
organization
/
projects
curl --request POST \
  --url https://api.openai.com/v1/organization/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>"
}'
{
  "id": "<string>",
  "object": "organization.project",
  "name": "<string>",
  "created_at": 123,
  "archived_at": 123,
  "status": "active"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

The project create request payload.

The body is of type object.

Response

200 - application/json

Project created successfully.

Represents an individual project.