Modify project

POSThttps:/api.openai.com/v1/organization/projects/{project_id}

Modifies a project in the organization.

Path parameters

  • project_id
    string
    Required
    The ID of the project.

Request body

  • name
    string
    Required
    The updated name of the project, this name appears in reports.

Response

The updated Project object.

Example request
1
curl -X POST https://api.openai.com/v1/organization/projects/proj_abc \
2
-H "Authorization: Bearer $OPENAI_ADMIN_KEY" \
3
-H "Content-Type: application/json" \
4
-d '{
5
"name": "Project DEF"
6
}'
Built with