Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 4 additions & 30 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8021,9 +8021,7 @@ paths:
-H "Authorization: Bearer $OPENAI_ADMIN_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Project ABC",
"app_use_case": "Your project use case here",
"business_website": "https://example.com"
"name": "Project ABC"
}'
response:
content: |
Expand All @@ -8033,9 +8031,7 @@ paths:
"name": "Project ABC",
"created_at": 1711471533,
"archived_at": null,
"status": "active",
"app_use_case": "Your project use case here",
"business_website": "https://example.com"
"status": "active"
}

/organization/projects/{project_id}:
Expand Down Expand Up @@ -8116,9 +8112,7 @@ paths:
-H "Authorization: Bearer $OPENAI_ADMIN_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Project DEF",
"app_use_case": "Your project use case here",
"business_website": "https://example.com"
"name": "Project DEF"
}'

/organization/projects/{project_id}/archive:
Expand Down Expand Up @@ -16452,12 +16446,6 @@ components:
type: string
enum: [active, archived]
description: "`active` or `archived`"
app_use_case:
type: string
description: A description of your business, project, or use case. [Why we need this information](https://help.openai.com/en/articles/9824607-api-platform-verifications).
business_website:
type: string
description: Your business URL, or if you don't have one yet, a URL to your LinkedIn or other social media. [Why we need this information](https://help.openai.com/en/articles/9824607-api-platform-verifications).
required:
- id
- object
Expand All @@ -16473,9 +16461,7 @@ components:
"name": "Project example",
"created_at": 1711471533,
"archived_at": null,
"status": "active",
"app_use_case": "Your project use case here",
"business_website": "https://example.com"
"status": "active"
}

ProjectListResponse:
Expand Down Expand Up @@ -16507,12 +16493,6 @@ components:
name:
type: string
description: The friendly name of the project, this name appears in reports.
app_use_case:
type: string
description: A description of your business, project, or use case. [Why we need this information](https://help.openai.com/en/articles/9824607-api-platform-verifications).
business_website:
type: string
description: Your business URL, or if you don't have one yet, a URL to your LinkedIn or other social media. [Why we need this information](https://help.openai.com/en/articles/9824607-api-platform-verifications).
required:
- name

Expand All @@ -16522,12 +16502,6 @@ components:
name:
type: string
description: The updated name of the project, this name appears in reports.
app_use_case:
type: string
description: A description of your business, project, or use case. [Why we need this information](https://help.openai.com/en/articles/9824607-api-platform-verifications).
business_website:
type: string
description: Your business URL, or if you don't have one yet, a URL to your LinkedIn or other social media. [Why we need this information](https://help.openai.com/en/articles/9824607-api-platform-verifications).
required:
- name

Expand Down
Loading