POST
/organization/projects/{project_id}
curl \
--request POST 'https://api.openai.com/v1/organization/projects/{project_id}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"name":"string"}'
Request examples
{
"name": "string"
}
Response examples (200)
{
"id": "string",
"object": "organization.project",
"name": "string",
"created_at": 42,
"archived_at": 42,
"status": "active"
}
Response examples (400)
{
"error": {
"code": "string",
"message": "string",
"param": "string",
"type": "string"
}
}