POST
/
organization
/
projects
/
{project_id}
/
archive
curl --request POST \
  --url https://api.openai.com/v1/organization/projects/{project_id}/archive \
  --header 'Authorization: Bearer <token>'
{
  "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.

Path Parameters

project_id
string
required

The ID of the project.

Response

200 - application/json

Project archived successfully.

Represents an individual project.