POST
/
organization
/
projects
Create project
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.

name
string
required

The friendly name of the project, this name appears in reports.

Response

200 - application/json

Project created successfully.

Represents an individual project.

id
string
required

The identifier, which can be referenced in API endpoints

object
enum<string>
required

The object type, which is always organization.project

Available options:
organization.project
name
string
required

The name of the project. This appears in reporting.

created_at
integer
required

The Unix timestamp (in seconds) of when the project was created.

status
enum<string>
required

active or archived

Available options:
active,
archived
archived_at
integer | null

The Unix timestamp (in seconds) of when the project was archived or null.