Search + K

Command Palette

Search for a command to run...

Sign In

Archives a project in the organization. Archived projects cannot be used or updated.

POST /organization/projects/{project_id}/archive
Copy endpoint
https://api.openai.com/v1

Parameters

path Path Parameters

Name Type
project_id required

The ID of the project.

string

Responses

200 application/json

Project archived successfully.

interface Project {
id: string;
object: "organization.project";
name: string;
created_at: number;
archived_at?: number | null;
status: "active" | "archived";
}