Open Connector
所有 Tools

OpenAI logoOpenAI

Catalog 暂无描述。

openaivcatalog-v1278 个 Tools

认证方式

方式底层类型状态说明
API Keyapi_keyavailable

调用示例

import { createClient } from "@open-connector/sdk";const oc = createClient({  baseUrl: "https://api.openconnector.dev",  apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await oc.executeTool({  slug: "OPENAI_ACCEPT_REALTIME_CALL",  connectedAccountId: "conn_...",  arguments: { /* match this tool's input schema */ },});
import Composio from "@composio/client";const composio = new Composio({  baseURL: "https://api.openconnector.dev/composio",  apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await composio.tools.execute("OPENAI_ACCEPT_REALTIME_CALL", {  connected_account_id: "conn_...",  arguments: { /* match this tool's input schema */ },});
oc tools execute OPENAI_ACCEPT_REALTIME_CALL --data '{ }'

Tool 目录

可用 Tools

278 个可调用操作

Accept an incoming SIP call and configure the realtime session that will handle it.OPENAI_ACCEPT_REALTIME_CALLAccept an incoming SIP call and configure the realtime session that will handle it.

Accept an incoming SIP call and configure the realtime session that will handle it.

认证

需要 Connected Account

Tags

Realtime
Activate certificates at the organization level. You can atomically and idempotently activate up to 10 certificates at a time.OPENAI_ACTIVATE_ORGANIZATION_CERTIFICATESActivate certificates at the organization level. You can atomically and idempotently activate up to 10 certificates at a time.

Activate certificates at the organization level. You can atomically and idempotently activate up to 10 certificates at a time.

认证

需要 Connected Account

Tags

Certificates
Activate certificates at the project level. You can atomically and idempotently activate up to 10 certificates at a time.OPENAI_ACTIVATE_PROJECT_CERTIFICATESActivate certificates at the project level. You can atomically and idempotently activate up to 10 certificates at a time.

Activate certificates at the project level. You can atomically and idempotently activate up to 10 certificates at a time.

认证

需要 Connected Account

Tags

Certificates
Adds a user to a group.OPENAI_ADD_GROUP_USERAdds a user to a group.

Adds a user to a group.

认证

需要 Connected Account

Tags

Group users
Grants a group access to a project.OPENAI_ADD_PROJECT_GROUPGrants a group access to a project.

Grants a group access to a project.

认证

需要 Connected Account

Tags

Project groups
Create an organization admin API keyOPENAI_ADMIN_API_KEYS_CREATECreate a new admin-level API key for the organization.

Create a new admin-level API key for the organization.

认证

需要 Connected Account

Tags

api
Delete an organization admin API keyOPENAI_ADMIN_API_KEYS_DELETEDelete the specified admin API key.

Delete the specified admin API key.

认证

需要 Connected Account

Tags

api
Retrieve a single organization API keyOPENAI_ADMIN_API_KEYS_GETGet details for a specific organization API key by its ID.

Get details for a specific organization API key by its ID.

认证

需要 Connected Account

Tags

api
List organization API keysOPENAI_ADMIN_API_KEYS_LISTRetrieve a paginated list of organization admin API keys.

Retrieve a paginated list of organization admin API keys.

认证

需要 Connected Account

Tags

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

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

认证

需要 Connected Account

Tags

Projects
Assigns an organization role to a group within the organization.OPENAI_ASSIGN_GROUP_ROLEAssigns an organization role to a group within the organization.

Assigns an organization role to a group within the organization.

认证

需要 Connected Account

Tags

Group organization role assignments
Assigns a project role to a group within a project.OPENAI_ASSIGN_PROJECT_GROUP_ROLEAssigns a project role to a group within a project.

Assigns a project role to a group within a project.

认证

需要 Connected Account

Tags

Project group role assignments
Assigns a project role to a user within a project.OPENAI_ASSIGN_PROJECT_USER_ROLEAssigns a project role to a user within a project.

Assigns a project role to a user within a project.

认证

需要 Connected Account

Tags

Project user role assignments
Assigns an organization role to a user within the organization.OPENAI_ASSIGN_USER_ROLEAssigns an organization role to a user within the organization.

Assigns an organization role to a user within the organization.

认证

需要 Connected Account

Tags

User organization role assignments
Cancels a model response with the given ID. Only responses created with the `background` parameter set to `true` can be cancelled. [Learn more](/docs/guides/background).OPENAI_BETA_CANCEL_RESPONSECancels a model response with the given ID. Only responses created with the `background` parameter set to `true` can be cancelled. [Learn more](/docs/guides/background).

Cancels a model response with the given ID. Only responses created with the `background` parameter set to `true` can be cancelled. [Learn more](/docs/guides/background).

认证

需要 Connected Account

Tags

Responses
Compact a conversation. Returns a compacted response object. Learn when and how to compact long-running conversations in the [conversation state guide](/docs/guides/conversation-state#managing-the-context-window). For ZDR-compatible compaction details, see [Compaction (advanced)](/docs/guides/conversation-state#compaction-advanced).OPENAI_BETA_COMPACTCONVERSATIONCompact a conversation. Returns a compacted response object. Learn when and how to compact long-running conversations in the [conversation state guide](/docs/guides/conversation-state#managing-the-context-window). For ZDR-compatible compaction details, see [Compaction (advanced)](/docs/guides/conversation-state#compaction-advanced).

Compact a conversation. Returns a compacted response object. Learn when and how to compact long-running conversations in the [conversation state guide](/docs/guides/conversation-state#managing-the-context-window). For ZDR-compatible compaction details, see [Compaction (advanced)](/docs/guides/conversation-state#compaction-advanced).

认证

需要 Connected Account

Tags

beta
Creates a model response. Provide [text](/docs/guides/text) or [image](/docs/guides/images) inputs to generate [text](/docs/guides/text) or [JSON](/docs/guides/structured-outputs) outputs. Have the model call your own [custom code](/docs/guides/function-calling) or use built-in [tools](/docs/guides/tools) like [web search](/docs/guides/tools-web-search) or [file search](/docs/guides/tools-file-search) to use your own data as input for the model's response.OPENAI_BETA_CREATE_RESPONSECreates a model response. Provide [text](/docs/guides/text) or [image](/docs/guides/images) inputs to generate [text](/docs/guides/text) or [JSON](/docs/guides/structured-outputs) outputs. Have the model call your own [custom code](/docs/guides/function-calling) or use built-in [tools](/docs/guides/tools) like [web search](/docs/guides/tools-web-search) or [file search](/docs/guides/tools-file-search) to use your own data as input for the model's response.

Creates a model response. Provide [text](/docs/guides/text) or [image](/docs/guides/images) inputs to generate [text](/docs/guides/text) or [JSON](/docs/guides/structured-outputs) outputs. Have the model call your own [custom code](/docs/guides/function-calling) or use built-in [tools](/docs/guides/tools) like [web search](/docs/guides/tools-web-search) or [file search](/docs/guides/tools-file-search) to use your own data as input for the model's response.

认证

需要 Connected Account

Tags

Responses
Deletes a model response with the given ID.OPENAI_BETA_DELETE_RESPONSEDeletes a model response with the given ID.

Deletes a model response with the given ID.

认证

需要 Connected Account

Tags

Responses
Retrieves a model response with the given ID.OPENAI_BETA_GET_RESPONSERetrieves a model response with the given ID.

Retrieves a model response with the given ID.

认证

需要 Connected Account

Tags

Responses
Returns input token counts of the request. Returns an object with `object` set to `response.input_tokens` and an `input_tokens` count.OPENAI_BETA_GETINPUTTOKENCOUNTSReturns input token counts of the request. Returns an object with `object` set to `response.input_tokens` and an `input_tokens` count.

Returns input token counts of the request. Returns an object with `object` set to `response.input_tokens` and an `input_tokens` count.

认证

需要 Connected Account

Tags

beta
Returns a list of input items for a given response.OPENAI_BETA_LIST_INPUT_ITEMSReturns a list of input items for a given response.

Returns a list of input items for a given response.

认证

需要 Connected Account

Tags

Responses
Cancels an in-progress batch. The batch will be in status `cancelling` for up to 10 minutes, before changing to `cancelled`, where it will have partial results (if any) available in the output file.OPENAI_CANCEL_BATCHCancels an in-progress batch. The batch will be in status `cancelling` for up to 10 minutes, before changing to `cancelled`, where it will have partial results (if any) available in the output file.

Cancels an in-progress batch. The batch will be in status `cancelling` for up to 10 minutes, before changing to `cancelled`, where it will have partial results (if any) available in the output file.

认证

需要 Connected Account

Tags

Batch
Cancel an active ChatKit session and return its most recent metadata. Cancelling prevents new requests from using the issued client secret.OPENAI_CANCEL_CHAT_SESSION_METHODCancel an active ChatKit session and return its most recent metadata. Cancelling prevents new requests from using the issued client secret.

Cancel an active ChatKit session and return its most recent metadata. Cancelling prevents new requests from using the issued client secret.

认证

需要 Connected Account

Tags

cancelchatsessionmethod
Cancel an ongoing evaluation run.OPENAI_CANCEL_EVAL_RUNCancel an ongoing evaluation run.

Cancel an ongoing evaluation run.

认证

需要 Connected Account

Tags

Evals
Immediately cancel a fine-tune job.OPENAI_CANCEL_FINE_TUNING_JOBImmediately cancel a fine-tune job.

Immediately cancel a fine-tune job.

认证

需要 Connected Account

Tags

Fine-tuning
Cancels a model response with the given ID. Only responses created with the `background` parameter set to `true` can be cancelled. [Learn more](/docs/guides/background).OPENAI_CANCEL_RESPONSECancels a model response with the given ID. Only responses created with the `background` parameter set to `true` can be cancelled. [Learn more](/docs/guides/background).

Cancels a model response with the given ID. Only responses created with the `background` parameter set to `true` can be cancelled. [Learn more](/docs/guides/background).

认证

需要 Connected Account

Tags

Responses
Cancels a run that is `in_progress`.OPENAI_CANCEL_RUNCancels a run that is `in_progress`.

Cancels a run that is `in_progress`.

认证

需要 Connected Account

Tags

Assistants
Cancels the Upload. No Parts may be added after an Upload is cancelled. Returns the Upload object with status `cancelled`.OPENAI_CANCEL_UPLOADCancels the Upload. No Parts may be added after an Upload is cancelled. Returns the Upload object with status `cancelled`.

Cancels the Upload. No Parts may be added after an Upload is cancelled. Returns the Upload object with status `cancelled`.

认证

需要 Connected Account

Tags

Uploads
Cancel a vector store file batch. This attempts to cancel the processing of files in this batch as soon as possible.OPENAI_CANCEL_VECTOR_STORE_FILE_BATCHCancel a vector store file batch. This attempts to cancel the processing of files in this batch as soon as possible.

Cancel a vector store file batch. This attempts to cancel the processing of files in this batch as soon as possible.

认证

需要 Connected Account

Tags

Vector stores
Compact a conversation. Returns a compacted response object. Learn when and how to compact long-running conversations in the [conversation state guide](/docs/guides/conversation-state#managing-the-context-window). For ZDR-compatible compaction details, see [Compaction (advanced)](/docs/guides/conversation-state#compaction-advanced).OPENAI_COMPACTCONVERSATIONCompact a conversation. Returns a compacted response object. Learn when and how to compact long-running conversations in the [conversation state guide](/docs/guides/conversation-state#managing-the-context-window). For ZDR-compatible compaction details, see [Compaction (advanced)](/docs/guides/conversation-state#compaction-advanced).

Compact a conversation. Returns a compacted response object. Learn when and how to compact long-running conversations in the [conversation state guide](/docs/guides/conversation-state#managing-the-context-window). For ZDR-compatible compaction details, see [Compaction (advanced)](/docs/guides/conversation-state#compaction-advanced).

认证

需要 Connected Account

Tags

compactconversation
Completes the [Upload](/docs/api-reference/uploads/object). Within the returned Upload object, there is a nested [File](/docs/api-reference/files/object) object that is ready to use in the rest of the platform. You can specify the order of the Parts by passing in an ordered list of the Part IDs. The number of bytes uploaded upon completion must match the number of bytes initially specified when creating the Upload object. No Parts may be added after an Upload is completed. Returns the Upload object with status `completed`, including an additional `file` property containing the created usable File object.OPENAI_COMPLETE_UPLOADCompletes the [Upload](/docs/api-reference/uploads/object). Within the returned Upload object, there is a nested [File](/docs/api-reference/files/object) object that is ready to use in the rest of the platform. You can specify the order of the Parts by passing in an ordered list of the Part IDs. The number of bytes uploaded upon completion must match the number of bytes initially specified when creating the Upload object. No Parts may be added after an Upload is completed. Returns the Upload object with status `completed`, including an additional `file` property containing the created usable File object.

Completes the [Upload](/docs/api-reference/uploads/object). Within the returned Upload object, there is a nested [File](/docs/api-reference/files/object) object that is ready to use in the rest of the platform. You can specify the order of the Parts by passing in an ordered list of the Part IDs. The number of bytes uploaded upon completion must match the number of bytes initially specified when creating the Upload object. No Parts may be added after an Upload is completed. Returns the Upload object with status `completed`, including an additional `file` property containing the created usable File object.

认证

需要 Connected Account

Tags

Uploads
Create an assistant with a model and instructions.OPENAI_CREATE_ASSISTANTCreate an assistant with a model and instructions.

Create an assistant with a model and instructions.

认证

需要 Connected Account

Tags

Assistants
Creates and executes a batch from an uploaded file of requestsOPENAI_CREATE_BATCHCreates and executes a batch from an uploaded file of requests

Creates and executes a batch from an uploaded file of requests

认证

需要 Connected Account

Tags

Batch
**Starting a new project?** We recommend trying [Responses](/docs/api-reference/responses) to take advantage of the latest OpenAI platform features. Compare [Chat Completions with Responses](/docs/guides/responses-vs-chat-completions?api-mode=responses). --- Creates a model response for the given chat conversation. Learn more in the [text generation](/docs/guides/text-generation), [vision](/docs/guides/vision), and [audio](/docs/guides/audio) guides. Parameter support can differ depending on the model used to generate the response, particularly for newer reasoning models. Parameters that are only supported for reasoning models are noted below. For the current state of unsupported parameters in reasoning models, [refer to the reasoning guide](/docs/guides/reasoning). Returns a chat completion object, or a streamed sequence of chat completion chunk objects if the request is streamed.OPENAI_CREATE_CHAT_COMPLETION**Starting a new project?** We recommend trying [Responses](/docs/api-reference/responses) to take advantage of the latest OpenAI platform features. Compare [Chat Completions with Responses](/docs/guides/responses-vs-chat-completions?api-mode=responses). --- Creates a model response for the given chat conversation. Learn more in the [text generation](/docs/guides/text-generation), [vision](/docs/guides/vision), and [audio](/docs/guides/audio) guides. Parameter support can differ depending on the model used to generate the response, particularly for newer reasoning models. Parameters that are only supported for reasoning models are noted below. For the current state of unsupported parameters in reasoning models, [refer to the reasoning guide](/docs/guides/reasoning). Returns a chat completion object, or a streamed sequence of chat completion chunk objects if the request is streamed.

**Starting a new project?** We recommend trying [Responses](/docs/api-reference/responses) to take advantage of the latest OpenAI platform features. Compare [Chat Completions with Responses](/docs/guides/responses-vs-chat-completions?api-mode=responses). --- Creates a model response for the given chat conversation. Learn more in the [text generation](/docs/guides/text-generation), [vision](/docs/guides/vision), and [audio](/docs/guides/audio) guides. Parameter support can differ depending on the model used to generate the response, particularly for newer reasoning models. Parameters that are only supported for reasoning models are noted below. For the current state of unsupported parameters in reasoning models, [refer to the reasoning guide](/docs/guides/reasoning). Returns a chat completion object, or a streamed sequence of chat completion chunk objects if the request is streamed.

认证

需要 Connected Account

Tags

Chat
Create a ChatKit session.OPENAI_CREATE_CHAT_SESSION_METHODCreate a ChatKit session.

Create a ChatKit session.

认证

需要 Connected Account

Tags

createchatsessionmethod
Creates a completion for the provided prompt and parameters. Returns a completion object, or a sequence of completion objects if the request is streamed.OPENAI_CREATE_COMPLETIONCreates a completion for the provided prompt and parameters. Returns a completion object, or a sequence of completion objects if the request is streamed.

Creates a completion for the provided prompt and parameters. Returns a completion object, or a sequence of completion objects if the request is streamed.

认证

需要 Connected Account

Tags

Completions
Create ContainerOPENAI_CREATE_CONTAINERCreates a container.

Creates a container.

认证

需要 Connected Account

Tags

createcontainer
Create a Container File You can send either a multipart/form-data request with the raw file content, or a JSON request with a file ID.OPENAI_CREATE_CONTAINER_FILECreates a container file.

Creates a container file.

认证

需要 Connected Account

Tags

createcontainerfile
Create a conversation.OPENAI_CREATE_CONVERSATIONCreate a conversation.

Create a conversation.

认证

需要 Connected Account

Tags

Conversations
Create items in a conversation with the given ID.OPENAI_CREATE_CONVERSATION_ITEMSCreate items in a conversation with the given ID.

Create items in a conversation with the given ID.

认证

需要 Connected Account

Tags

Conversations
Creates an embedding vector representing the input text.OPENAI_CREATE_EMBEDDINGCreates an embedding vector representing the input text.

Creates an embedding vector representing the input text.

认证

需要 Connected Account

Tags

Embeddings
Create the structure of an evaluation that can be used to test a model's performance. An evaluation is a set of testing criteria and the config for a data source, which dictates the schema of the data used in the evaluation. After creating an evaluation, you can run it on different models and model parameters. We support several types of graders and datasources. For more information, see the [Evals guide](/docs/guides/evals).OPENAI_CREATE_EVALCreate the structure of an evaluation that can be used to test a model's performance. An evaluation is a set of testing criteria and the config for a data source, which dictates the schema of the data used in the evaluation. After creating an evaluation, you can run it on different models and model parameters. We support several types of graders and datasources. For more information, see the [Evals guide](/docs/guides/evals).

Create the structure of an evaluation that can be used to test a model's performance. An evaluation is a set of testing criteria and the config for a data source, which dictates the schema of the data used in the evaluation. After creating an evaluation, you can run it on different models and model parameters. We support several types of graders and datasources. For more information, see the [Evals guide](/docs/guides/evals).

认证

需要 Connected Account

Tags

Evals
Kicks off a new run for a given evaluation, specifying the data source, and what model configuration to use to test. The datasource will be validated against the schema specified in the config of the evaluation.OPENAI_CREATE_EVAL_RUNKicks off a new run for a given evaluation, specifying the data source, and what model configuration to use to test. The datasource will be validated against the schema specified in the config of the evaluation.

Kicks off a new run for a given evaluation, specifying the data source, and what model configuration to use to test. The datasource will be validated against the schema specified in the config of the evaluation.

认证

需要 Connected Account

Tags

Evals
**NOTE:** Calling this endpoint requires an [admin API key](../admin-api-keys). This enables organization owners to share fine-tuned models with other projects in their organization.OPENAI_CREATE_FINE_TUNING_CHECKPOINT_PERMISSION**NOTE:** Calling this endpoint requires an [admin API key](../admin-api-keys). This enables organization owners to share fine-tuned models with other projects in their organization.

**NOTE:** Calling this endpoint requires an [admin API key](../admin-api-keys). This enables organization owners to share fine-tuned models with other projects in their organization.

认证

需要 Connected Account

Tags

Fine-tuning
Creates a fine-tuning job which begins the process of creating a new model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about fine-tuning](/docs/guides/model-optimization)OPENAI_CREATE_FINE_TUNING_JOBCreates a fine-tuning job which begins the process of creating a new model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about fine-tuning](/docs/guides/model-optimization)

Creates a fine-tuning job which begins the process of creating a new model from a given dataset. Response includes details of the enqueued job including job status and the name of the fine-tuned models once complete. [Learn more about fine-tuning](/docs/guides/model-optimization)

认证

需要 Connected Account

Tags

Fine-tuning
Creates a new group in the organization.OPENAI_CREATE_GROUPCreates a new group in the organization.

Creates a new group in the organization.

认证

需要 Connected Account

Tags

Groups
Creates an image given a prompt. [Learn more](/docs/guides/images).OPENAI_CREATE_IMAGECreates an image given a prompt. [Learn more](/docs/guides/images).

Creates an image given a prompt. [Learn more](/docs/guides/images).

认证

需要 Connected Account

Tags

Images
Creates an edited or extended image given one or more source images and a prompt. This endpoint supports GPT Image models (`gpt-image-1.5`, `gpt-image-1`, `gpt-image-1-mini`, and `chatgpt-image-latest`) and `dall-e-2`.OPENAI_CREATE_IMAGE_EDITYou can call this endpoint with either: - `multipart/form-data`: use binary uploads via `image` (and optional `mask`). - `application/json`: use `images` (and optional `mask`) as references with either `image_url` or `file_id`. Note that JSON requests use `images` (array) instead of the multipart `image` field.

You can call this endpoint with either: - `multipart/form-data`: use binary uploads via `image` (and optional `mask`). - `application/json`: use `images` (and optional `mask`) as references with either `image_url` or `file_id`. Note that JSON requests use `images` (array) instead of the multipart `image` field.

认证

需要 Connected Account

Tags

Images
Create a message.OPENAI_CREATE_MESSAGECreate a message.

Create a message.

认证

需要 Connected Account

Tags

Assistants
Classifies if text and/or image inputs are potentially harmful. Learn more in the [moderation guide](/docs/guides/moderation).OPENAI_CREATE_MODERATIONClassifies if text and/or image inputs are potentially harmful. Learn more in the [moderation guide](/docs/guides/moderation).

Classifies if text and/or image inputs are potentially harmful. Learn more in the [moderation guide](/docs/guides/moderation).

认证

需要 Connected Account

Tags

Moderations
Creates an organization spend alert.OPENAI_CREATE_ORGANIZATION_SPEND_ALERTCreates an organization spend alert.

Creates an organization spend alert.

认证

需要 Connected Account

Tags

Spend alerts
Create a new project in the organization. Projects can be created and archived, but cannot be deleted.OPENAI_CREATE_PROJECTCreate a new project in the organization. Projects can be created and archived, but cannot be deleted.

Create a new project in the organization. Projects can be created and archived, but cannot be deleted.

认证

需要 Connected Account

Tags

Projects
Creates a custom role for a project.OPENAI_CREATE_PROJECT_ROLECreates a custom role for a project.

Creates a custom role for a project.

认证

需要 Connected Account

Tags

Roles
Creates a new service account in the project. By default, this also returns an unredacted API key for the service account.OPENAI_CREATE_PROJECT_SERVICE_ACCOUNTCreates a new service account in the project. By default, this also returns an unredacted API key for the service account.

Creates a new service account in the project. By default, this also returns an unredacted API key for the service account.

认证

需要 Connected Account

Tags

Projects
Creates a project spend alert.OPENAI_CREATE_PROJECT_SPEND_ALERTCreates a project spend alert.

Creates a project spend alert.

认证

需要 Connected Account

Tags

Spend alerts
Adds a user to the project. Users must already be members of the organization to be added to a project.OPENAI_CREATE_PROJECT_USERAdds a user to the project. Users must already be members of the organization to be added to a project.

Adds a user to the project. Users must already be members of the organization to be added to a project.

认证

需要 Connected Account

Tags

Projects
Create a Realtime client secret with an associated session configuration. Client secrets are short-lived tokens that can be passed to a client app, such as a web frontend or mobile client, which grants access to the Realtime API without leaking your main API key. You can configure a custom TTL for each client secret. You can also attach session configuration options to the client secret, which will be applied to any sessions created using that client secret, but these can also be overridden by the client connection. [Learn more about authentication with client secrets over WebRTC](/docs/guides/realtime-webrtc). Returns the created client secret and the effective session object. The client secret is a string that looks like `ek_1234`.OPENAI_CREATE_REALTIME_CLIENT_SECRETCreate a Realtime client secret with an associated session configuration. Client secrets are short-lived tokens that can be passed to a client app, such as a web frontend or mobile client, which grants access to the Realtime API without leaking your main API key. You can configure a custom TTL for each client secret. You can also attach session configuration options to the client secret, which will be applied to any sessions created using that client secret, but these can also be overridden by the client connection. [Learn more about authentication with client secrets over WebRTC](/docs/guides/realtime-webrtc). Returns the created client secret and the effective session object. The client secret is a string that looks like `ek_1234`.

Create a Realtime client secret with an associated session configuration. Client secrets are short-lived tokens that can be passed to a client app, such as a web frontend or mobile client, which grants access to the Realtime API without leaking your main API key. You can configure a custom TTL for each client secret. You can also attach session configuration options to the client secret, which will be applied to any sessions created using that client secret, but these can also be overridden by the client connection. [Learn more about authentication with client secrets over WebRTC](/docs/guides/realtime-webrtc). Returns the created client secret and the effective session object. The client secret is a string that looks like `ek_1234`.

认证

需要 Connected Account

Tags

Realtime
Create an ephemeral API token for use in client-side applications with the Realtime API. Can be configured with the same session parameters as the `session.update` client event. It responds with a session object, plus a `client_secret` key which contains a usable ephemeral API token that can be used to authenticate browser clients for the Realtime API. Returns the created Realtime session object, plus an ephemeral key.OPENAI_CREATE_REALTIME_SESSIONCreate an ephemeral API token for use in client-side applications with the Realtime API. Can be configured with the same session parameters as the `session.update` client event. It responds with a session object, plus a `client_secret` key which contains a usable ephemeral API token that can be used to authenticate browser clients for the Realtime API. Returns the created Realtime session object, plus an ephemeral key.

Create an ephemeral API token for use in client-side applications with the Realtime API. Can be configured with the same session parameters as the `session.update` client event. It responds with a session object, plus a `client_secret` key which contains a usable ephemeral API token that can be used to authenticate browser clients for the Realtime API. Returns the created Realtime session object, plus an ephemeral key.

认证

需要 Connected Account

Tags

Realtime
Create an ephemeral API token for use in client-side applications with the Realtime API specifically for realtime transcriptions. Can be configured with the same session parameters as the `transcription_session.update` client event. It responds with a session object, plus a `client_secret` key which contains a usable ephemeral API token that can be used to authenticate browser clients for the Realtime API. Returns the created Realtime transcription session object, plus an ephemeral key.OPENAI_CREATE_REALTIME_TRANSCRIPTION_SESSIONCreate an ephemeral API token for use in client-side applications with the Realtime API specifically for realtime transcriptions. Can be configured with the same session parameters as the `transcription_session.update` client event. It responds with a session object, plus a `client_secret` key which contains a usable ephemeral API token that can be used to authenticate browser clients for the Realtime API. Returns the created Realtime transcription session object, plus an ephemeral key.

Create an ephemeral API token for use in client-side applications with the Realtime API specifically for realtime transcriptions. Can be configured with the same session parameters as the `transcription_session.update` client event. It responds with a session object, plus a `client_secret` key which contains a usable ephemeral API token that can be used to authenticate browser clients for the Realtime API. Returns the created Realtime transcription session object, plus an ephemeral key.

认证

需要 Connected Account

Tags

Realtime
Create a Realtime translation client secret with an associated translation session configuration. Client secrets are short-lived tokens that can be passed to a client app, such as a web frontend or mobile client, which grants access to the Realtime Translation API without leaking your main API key. You can configure a custom TTL for each client secret. Returns the created client secret and the effective translation session object. The client secret is a string that looks like `ek_1234`.OPENAI_CREATE_REALTIME_TRANSLATION_CLIENT_SECRETCreate a Realtime translation client secret with an associated translation session configuration. Client secrets are short-lived tokens that can be passed to a client app, such as a web frontend or mobile client, which grants access to the Realtime Translation API without leaking your main API key. You can configure a custom TTL for each client secret. Returns the created client secret and the effective translation session object. The client secret is a string that looks like `ek_1234`.

Create a Realtime translation client secret with an associated translation session configuration. Client secrets are short-lived tokens that can be passed to a client app, such as a web frontend or mobile client, which grants access to the Realtime Translation API without leaking your main API key. You can configure a custom TTL for each client secret. Returns the created client secret and the effective translation session object. The client secret is a string that looks like `ek_1234`.

认证

需要 Connected Account

Tags

Realtime
Creates a model response. Provide [text](/docs/guides/text) or [image](/docs/guides/images) inputs to generate [text](/docs/guides/text) or [JSON](/docs/guides/structured-outputs) outputs. Have the model call your own [custom code](/docs/guides/function-calling) or use built-in [tools](/docs/guides/tools) like [web search](/docs/guides/tools-web-search) or [file search](/docs/guides/tools-file-search) to use your own data as input for the model's response.OPENAI_CREATE_RESPONSECreates a model response. Provide [text](/docs/guides/text) or [image](/docs/guides/images) inputs to generate [text](/docs/guides/text) or [JSON](/docs/guides/structured-outputs) outputs. Have the model call your own [custom code](/docs/guides/function-calling) or use built-in [tools](/docs/guides/tools) like [web search](/docs/guides/tools-web-search) or [file search](/docs/guides/tools-file-search) to use your own data as input for the model's response.

Creates a model response. Provide [text](/docs/guides/text) or [image](/docs/guides/images) inputs to generate [text](/docs/guides/text) or [JSON](/docs/guides/structured-outputs) outputs. Have the model call your own [custom code](/docs/guides/function-calling) or use built-in [tools](/docs/guides/tools) like [web search](/docs/guides/tools-web-search) or [file search](/docs/guides/tools-file-search) to use your own data as input for the model's response.

认证

需要 Connected Account

Tags

Responses
Creates a custom role for the organization.OPENAI_CREATE_ROLECreates a custom role for the organization.

Creates a custom role for the organization.

认证

需要 Connected Account

Tags

Roles
Create a run.OPENAI_CREATE_RUNCreate a run.

Create a run.

认证

需要 Connected Account

Tags

Assistants
Create a new skill.OPENAI_CREATE_SKILLCreate a new skill.

Create a new skill.

认证

需要 Connected Account

Tags

Skills
Create a new immutable skill version.OPENAI_CREATE_SKILL_VERSIONCreate a new immutable skill version.

Create a new immutable skill version.

认证

需要 Connected Account

Tags

Skills
Generates audio from the input text. Returns the audio file content, or a stream of audio events.OPENAI_CREATE_SPEECHGenerates audio from the input text. Returns the audio file content, or a stream of audio events.

Generates audio from the input text. Returns the audio file content, or a stream of audio events.

认证

需要 Connected Account

Tags

Audio
Create a thread.OPENAI_CREATE_THREADCreate a thread.

Create a thread.

认证

需要 Connected Account

Tags

Assistants
Create a thread and run it in one request.OPENAI_CREATE_THREAD_AND_RUNCreate a thread and run it in one request.

Create a thread and run it in one request.

认证

需要 Connected Account

Tags

Assistants
Creates an intermediate [Upload](/docs/api-reference/uploads/object) object that you can add [Parts](/docs/api-reference/uploads/part-object) to. Currently, an Upload can accept at most 8 GB in total and expires after an hour after you create it. Once you complete the Upload, we will create a [File](/docs/api-reference/files/object) object that contains all the parts you uploaded. This File is usable in the rest of our platform as a regular File object. For certain `purpose` values, the correct `mime_type` must be specified. Please refer to documentation for the [supported MIME types for your use case](/docs/assistants/tools/file-search#supported-files). For guidance on the proper filename extensions for each purpose, please follow the documentation on [creating a File](/docs/api-reference/files/create). Returns the Upload object with status `pending`.OPENAI_CREATE_UPLOADCreates an intermediate [Upload](/docs/api-reference/uploads/object) object that you can add [Parts](/docs/api-reference/uploads/part-object) to. Currently, an Upload can accept at most 8 GB in total and expires after an hour after you create it. Once you complete the Upload, we will create a [File](/docs/api-reference/files/object) object that contains all the parts you uploaded. This File is usable in the rest of our platform as a regular File object. For certain `purpose` values, the correct `mime_type` must be specified. Please refer to documentation for the [supported MIME types for your use case](/docs/assistants/tools/file-search#supported-files). For guidance on the proper filename extensions for each purpose, please follow the documentation on [creating a File](/docs/api-reference/files/create). Returns the Upload object with status `pending`.

Creates an intermediate [Upload](/docs/api-reference/uploads/object) object that you can add [Parts](/docs/api-reference/uploads/part-object) to. Currently, an Upload can accept at most 8 GB in total and expires after an hour after you create it. Once you complete the Upload, we will create a [File](/docs/api-reference/files/object) object that contains all the parts you uploaded. This File is usable in the rest of our platform as a regular File object. For certain `purpose` values, the correct `mime_type` must be specified. Please refer to documentation for the [supported MIME types for your use case](/docs/assistants/tools/file-search#supported-files). For guidance on the proper filename extensions for each purpose, please follow the documentation on [creating a File](/docs/api-reference/files/create). Returns the Upload object with status `pending`.

认证

需要 Connected Account

Tags

Uploads
Create a vector store.OPENAI_CREATE_VECTOR_STORECreate a vector store.

Create a vector store.

认证

需要 Connected Account

Tags

Vector stores
Create a vector store file by attaching a [File](/docs/api-reference/files) to a [vector store](/docs/api-reference/vector-stores/object).OPENAI_CREATE_VECTOR_STORE_FILEThis endpoint is subject to a per-vector-store write rate limit of 300 requests per minute, shared with `/vector_stores/{vector_store_id}/file_batches`. For uploading multiple files to the same vector store, use the file batches endpoint to reduce request volume.

This endpoint is subject to a per-vector-store write rate limit of 300 requests per minute, shared with `/vector_stores/{vector_store_id}/file_batches`. For uploading multiple files to the same vector store, use the file batches endpoint to reduce request volume.

认证

需要 Connected Account

Tags

Vector stores
Create a vector store file batch.OPENAI_CREATE_VECTOR_STORE_FILE_BATCHThe maximum number of files in a single batch request is 2000. Vector store file attach requests are rate limited per vector store (300 requests per minute across both this endpoint and `/vector_stores/{vector_store_id}/files`). For ingesting multiple files into the same vector store, this batch endpoint is recommended.

The maximum number of files in a single batch request is 2000. Vector store file attach requests are rate limited per vector store (300 requests per minute across both this endpoint and `/vector_stores/{vector_store_id}/files`). For ingesting multiple files into the same vector store, this batch endpoint is recommended.

认证

需要 Connected Account

Tags

Vector stores
Create a new video generation job from a prompt and optional reference assets.OPENAI_CREATE_VIDEOCreate a new video generation job from a prompt and optional reference assets.

Create a new video generation job from a prompt and optional reference assets.

认证

需要 Connected Account

Tags

Videos
Create a new video generation job by editing a source video or existing generated video.OPENAI_CREATE_VIDEO_EDITCreate a new video generation job by editing a source video or existing generated video.

Create a new video generation job by editing a source video or existing generated video.

认证

需要 Connected Account

Tags

Videos
Create an extension of a completed video.OPENAI_CREATE_VIDEO_EXTENDCreate an extension of a completed video.

Create an extension of a completed video.

认证

需要 Connected Account

Tags

Videos
Create a remix of a completed video using a refreshed prompt.OPENAI_CREATE_VIDEO_REMIXCreate a remix of a completed video using a refreshed prompt.

Create a remix of a completed video using a refreshed prompt.

认证

需要 Connected Account

Tags

Videos
Creates an API key for a service account in the project.OPENAI_CREATEAN_APIKEYFORASERVICEACCOUNTCreates an API key for a service account in the project.

Creates an API key for a service account in the project.

认证

需要 Connected Account

Tags

createanapikeyforaserviceaccount
Deactivate certificates at the organization level. You can atomically and idempotently deactivate up to 10 certificates at a time.OPENAI_DEACTIVATE_ORGANIZATION_CERTIFICATESDeactivate certificates at the organization level. You can atomically and idempotently deactivate up to 10 certificates at a time.

Deactivate certificates at the organization level. You can atomically and idempotently deactivate up to 10 certificates at a time.

认证

需要 Connected Account

Tags

Certificates
Deactivate certificates at the project level. You can atomically and idempotently deactivate up to 10 certificates at a time.OPENAI_DEACTIVATE_PROJECT_CERTIFICATESDeactivate certificates at the project level. You can atomically and idempotently deactivate up to 10 certificates at a time.

Deactivate certificates at the project level. You can atomically and idempotently deactivate up to 10 certificates at a time.

认证

需要 Connected Account

Tags

Certificates
Delete an assistant.OPENAI_DELETE_ASSISTANTDelete an assistant.

Delete an assistant.

认证

需要 Connected Account

Tags

Assistants
Delete a certificate from the organization. The certificate must be inactive for the organization and all projects.OPENAI_DELETE_CERTIFICATEDelete a certificate from the organization. The certificate must be inactive for the organization and all projects.

Delete a certificate from the organization. The certificate must be inactive for the organization and all projects.

认证

需要 Connected Account

Tags

Certificates
Delete a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` can be deleted.OPENAI_DELETE_CHAT_COMPLETIONDelete a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` can be deleted.

Delete a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` can be deleted.

认证

需要 Connected Account

Tags

Chat
Delete ContainerOPENAI_DELETE_CONTAINERDelete a container.

Delete a container.

认证

需要 Connected Account

Tags

deletecontainer
Delete Container FileOPENAI_DELETE_CONTAINER_FILEDelete a container file.

Delete a container file.

认证

需要 Connected Account

Tags

deletecontainerfile
Delete a conversation. Items in the conversation will not be deleted.OPENAI_DELETE_CONVERSATIONDelete a conversation. Items in the conversation will not be deleted.

Delete a conversation. Items in the conversation will not be deleted.

认证

需要 Connected Account

Tags

Conversations
Delete an item from a conversation with the given IDs.OPENAI_DELETE_CONVERSATION_ITEMDelete an item from a conversation with the given IDs.

Delete an item from a conversation with the given IDs.

认证

需要 Connected Account

Tags

Conversations
Delete an evaluation.OPENAI_DELETE_EVALDelete an evaluation.

Delete an evaluation.

认证

需要 Connected Account

Tags

Evals
Delete an eval run.OPENAI_DELETE_EVAL_RUNDelete an eval run.

Delete an eval run.

认证

需要 Connected Account

Tags

Evals
Delete a file and remove it from all vector stores.OPENAI_DELETE_FILEDelete a file and remove it from all vector stores.

Delete a file and remove it from all vector stores.

认证

需要 Connected Account

Tags

Files
**NOTE:** This endpoint requires an [admin API key](../admin-api-keys). Organization owners can use this endpoint to delete a permission for a fine-tuned model checkpoint.OPENAI_DELETE_FINE_TUNING_CHECKPOINT_PERMISSION**NOTE:** This endpoint requires an [admin API key](../admin-api-keys). Organization owners can use this endpoint to delete a permission for a fine-tuned model checkpoint.

**NOTE:** This endpoint requires an [admin API key](../admin-api-keys). Organization owners can use this endpoint to delete a permission for a fine-tuned model checkpoint.

认证

需要 Connected Account

Tags

Fine-tuning
Deletes a group from the organization.OPENAI_DELETE_GROUPDeletes a group from the organization.

Deletes a group from the organization.

认证

需要 Connected Account

Tags

Groups
Delete an invite. If the invite has already been accepted, it cannot be deleted.OPENAI_DELETE_INVITEDelete an invite. If the invite has already been accepted, it cannot be deleted.

Delete an invite. If the invite has already been accepted, it cannot be deleted.

认证

需要 Connected Account

Tags

Invites
Deletes a message.OPENAI_DELETE_MESSAGEDeletes a message.

Deletes a message.

认证

需要 Connected Account

Tags

Assistants
Delete a fine-tuned model. You must have the Owner role in your organization to delete a model.OPENAI_DELETE_MODELDelete a fine-tuned model. You must have the Owner role in your organization to delete a model.

Delete a fine-tuned model. You must have the Owner role in your organization to delete a model.

认证

需要 Connected Account

Tags

Models
Deletes an organization spend alert.OPENAI_DELETE_ORGANIZATION_SPEND_ALERTDeletes an organization spend alert.

Deletes an organization spend alert.

认证

需要 Connected Account

Tags

Spend alerts
Deletes an API key from the project. Returns confirmation of the key deletion, or an error if the key belonged to a service account.OPENAI_DELETE_PROJECT_API_KEYDeletes an API key from the project. Returns confirmation of the key deletion, or an error if the key belonged to a service account.

Deletes an API key from the project. Returns confirmation of the key deletion, or an error if the key belonged to a service account.

认证

需要 Connected Account

Tags

Projects
Deletes model permissions for a project.OPENAI_DELETE_PROJECT_MODEL_PERMISSIONSDeletes model permissions for a project.

Deletes model permissions for a project.

认证

需要 Connected Account

Tags

Projects
Deletes a custom role from a project.OPENAI_DELETE_PROJECT_ROLEDeletes a custom role from a project.

Deletes a custom role from a project.

认证

需要 Connected Account

Tags

Roles
Deletes a service account from the project. Returns confirmation of service account deletion, or an error if the project is archived (archived projects have no service accounts).OPENAI_DELETE_PROJECT_SERVICE_ACCOUNTDeletes a service account from the project. Returns confirmation of service account deletion, or an error if the project is archived (archived projects have no service accounts).

Deletes a service account from the project. Returns confirmation of service account deletion, or an error if the project is archived (archived projects have no service accounts).

认证

需要 Connected Account

Tags

Projects
Deletes a project spend alert.OPENAI_DELETE_PROJECT_SPEND_ALERTDeletes a project spend alert.

Deletes a project spend alert.

认证

需要 Connected Account

Tags

Spend alerts
Deletes a user from the project. Returns confirmation of project user deletion, or an error if the project is archived (archived projects have no users).OPENAI_DELETE_PROJECT_USERDeletes a user from the project. Returns confirmation of project user deletion, or an error if the project is archived (archived projects have no users).

Deletes a user from the project. Returns confirmation of project user deletion, or an error if the project is archived (archived projects have no users).

认证

需要 Connected Account

Tags

Projects
Deletes a model response with the given ID.OPENAI_DELETE_RESPONSEDeletes a model response with the given ID.

Deletes a model response with the given ID.

认证

需要 Connected Account

Tags

Responses
Deletes a custom role from the organization.OPENAI_DELETE_ROLEDeletes a custom role from the organization.

Deletes a custom role from the organization.

认证

需要 Connected Account

Tags

Roles
Delete a skill by its ID.OPENAI_DELETE_SKILLDelete a skill by its ID.

Delete a skill by its ID.

认证

需要 Connected Account

Tags

Skills
Delete a skill version.OPENAI_DELETE_SKILL_VERSIONDelete a skill version.

Delete a skill version.

认证

需要 Connected Account

Tags

Skills
Delete a thread.OPENAI_DELETE_THREADDelete a thread.

Delete a thread.

认证

需要 Connected Account

Tags

Assistants
Delete a ChatKit thread along with its items and stored attachments.OPENAI_DELETE_THREAD_METHODDelete a ChatKit thread along with its items and stored attachments.

Delete a ChatKit thread along with its items and stored attachments.

认证

需要 Connected Account

Tags

deletethreadmethod
Deletes a user from the organization.OPENAI_DELETE_USERDeletes a user from the organization.

Deletes a user from the organization.

认证

需要 Connected Account

Tags

Users
Delete a vector store.OPENAI_DELETE_VECTOR_STOREDelete a vector store.

Delete a vector store.

认证

需要 Connected Account

Tags

Vector stores
Delete a vector store file. This will remove the file from the vector store but the file itself will not be deleted. To delete the file, use the [delete file](/docs/api-reference/files/delete) endpoint.OPENAI_DELETE_VECTOR_STORE_FILEDelete a vector store file. This will remove the file from the vector store but the file itself will not be deleted. To delete the file, use the [delete file](/docs/api-reference/files/delete) endpoint.

Delete a vector store file. This will remove the file from the vector store but the file itself will not be deleted. To delete the file, use the [delete file](/docs/api-reference/files/delete) endpoint.

认证

需要 Connected Account

Tags

Vector stores
Permanently delete a completed or failed video and its stored assets.OPENAI_DELETE_VIDEOPermanently delete a completed or failed video and its stored assets.

Permanently delete a completed or failed video and its stored assets.

认证

需要 Connected Account

Tags

Videos
Deletes a voice consent recording.OPENAI_DELETE_VOICE_CONSENTDelete a consent recording that was uploaded for creating custom voices. See the [custom voices guide](/docs/guides/text-to-speech#custom-voices). Custom voices are limited to eligible customers.

Delete a consent recording that was uploaded for creating custom voices. See the [custom voices guide](/docs/guides/text-to-speech#custom-voices). Custom voices are limited to eligible customers.

认证

需要 Connected Account

Tags

Audio
Delete the organization's hard spend limit.OPENAI_DELETEORGANIZATIONSPENDLIMITDelete the organization's hard spend limit.

Delete the organization's hard spend limit.

认证

需要 Connected Account

Tags

deleteorganizationspendlimit
Delete a project's hard spend limit.OPENAI_DELETEPROJECTSPENDLIMITDelete a project's hard spend limit.

Delete a project's hard spend limit.

认证

需要 Connected Account

Tags

deleteprojectspendlimit
Returns a response containing the contents of the specified file.OPENAI_DOWNLOAD_FILEReturns a response containing the contents of the specified file.

Returns a response containing the contents of the specified file.

认证

需要 Connected Account

Tags

Files
Retrieves an assistant.OPENAI_GET_ASSISTANTRetrieves an assistant.

Retrieves an assistant.

认证

需要 Connected Account

Tags

Assistants
Get a certificate that has been uploaded to the organization. You can get a certificate regardless of whether it is active or not.OPENAI_GET_CERTIFICATEGet a certificate that has been uploaded to the organization. You can get a certificate regardless of whether it is active or not.

Get a certificate that has been uploaded to the organization. You can get a certificate regardless of whether it is active or not.

认证

需要 Connected Account

Tags

Certificates
Get a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` will be returned.OPENAI_GET_CHAT_COMPLETIONGet a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` will be returned.

Get a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` will be returned.

认证

需要 Connected Account

Tags

Chat
Get the messages in a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` will be returned.OPENAI_GET_CHAT_COMPLETION_MESSAGESGet the messages in a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` will be returned.

Get the messages in a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` will be returned.

认证

需要 Connected Account

Tags

Chat
Get a conversationOPENAI_GET_CONVERSATIONGet a conversation

Get a conversation

认证

需要 Connected Account

Tags

Conversations
Get a single item from a conversation with the given IDs.OPENAI_GET_CONVERSATION_ITEMGet a single item from a conversation with the given IDs.

Get a single item from a conversation with the given IDs.

认证

需要 Connected Account

Tags

Conversations
Get an evaluation by ID.OPENAI_GET_EVALGet an evaluation by ID.

Get an evaluation by ID.

认证

需要 Connected Account

Tags

Evals
Get an evaluation run by ID.OPENAI_GET_EVAL_RUNGet an evaluation run by ID.

Get an evaluation run by ID.

认证

需要 Connected Account

Tags

Evals
Get an evaluation run output item by ID.OPENAI_GET_EVAL_RUN_OUTPUT_ITEMGet an evaluation run output item by ID.

Get an evaluation run output item by ID.

认证

需要 Connected Account

Tags

Evals
Get a list of output items for an evaluation run.OPENAI_GET_EVAL_RUN_OUTPUT_ITEMSGet a list of output items for an evaluation run.

Get a list of output items for an evaluation run.

认证

需要 Connected Account

Tags

Evals
Get a list of runs for an evaluation.OPENAI_GET_EVAL_RUNSGet a list of runs for an evaluation.

Get a list of runs for an evaluation.

认证

需要 Connected Account

Tags

Evals
Retrieve a message.OPENAI_GET_MESSAGERetrieve a message.

Retrieve a message.

认证

需要 Connected Account

Tags

Assistants
Retrieves a model response with the given ID.OPENAI_GET_RESPONSERetrieves a model response with the given ID.

Retrieves a model response with the given ID.

认证

需要 Connected Account

Tags

Responses
Retrieves a run.OPENAI_GET_RUNRetrieves a run.

Retrieves a run.

认证

需要 Connected Account

Tags

Assistants
Retrieves a run step.OPENAI_GET_RUN_STEPRetrieves a run step.

Retrieves a run step.

认证

需要 Connected Account

Tags

Assistants
Get a skill by its ID.OPENAI_GET_SKILLGet a skill by its ID.

Get a skill by its ID.

认证

需要 Connected Account

Tags

Skills
Download a skill zip bundle by its ID.OPENAI_GET_SKILL_CONTENTDownload a skill zip bundle by its ID.

Download a skill zip bundle by its ID.

认证

需要 Connected Account

Tags

Skills
Get a specific skill version.OPENAI_GET_SKILL_VERSIONGet a specific skill version.

Get a specific skill version.

认证

需要 Connected Account

Tags

Skills
Download a skill version zip bundle.OPENAI_GET_SKILL_VERSION_CONTENTDownload a skill version zip bundle.

Download a skill version zip bundle.

认证

需要 Connected Account

Tags

Skills
Retrieves a thread.OPENAI_GET_THREADRetrieves a thread.

Retrieves a thread.

认证

需要 Connected Account

Tags

Assistants
Retrieve a ChatKit thread by its identifier.OPENAI_GET_THREAD_METHODRetrieve a ChatKit thread by its identifier.

Retrieve a ChatKit thread by its identifier.

认证

需要 Connected Account

Tags

getthreadmethod
Retrieves a vector store.OPENAI_GET_VECTOR_STORERetrieves a vector store.

Retrieves a vector store.

认证

需要 Connected Account

Tags

Vector stores
Retrieves a vector store file.OPENAI_GET_VECTOR_STORE_FILERetrieves a vector store file.

Retrieves a vector store file.

认证

需要 Connected Account

Tags

Vector stores
Retrieves a vector store file batch.OPENAI_GET_VECTOR_STORE_FILE_BATCHRetrieves a vector store file batch.

Retrieves a vector store file batch.

认证

需要 Connected Account

Tags

Vector stores
Fetch the latest metadata for a generated video.OPENAI_GET_VIDEOFetch the latest metadata for a generated video.

Fetch the latest metadata for a generated video.

认证

需要 Connected Account

Tags

Videos
Fetch a character.OPENAI_GET_VIDEO_CHARACTERFetch a character.

Fetch a character.

认证

需要 Connected Account

Tags

Videos
Retrieves a voice consent recording.OPENAI_GET_VOICE_CONSENTRetrieve consent recording metadata used for creating custom voices. See the [custom voices guide](/docs/guides/text-to-speech#custom-voices). Custom voices are limited to eligible customers.

Retrieve consent recording metadata used for creating custom voices. See the [custom voices guide](/docs/guides/text-to-speech#custom-voices). Custom voices are limited to eligible customers.

认证

需要 Connected Account

Tags

Audio
Returns input token counts of the request. Returns an object with `object` set to `response.input_tokens` and an `input_tokens` count.OPENAI_GETINPUTTOKENCOUNTSReturns input token counts of the request. Returns an object with `object` set to `response.input_tokens` and an `input_tokens` count.

Returns input token counts of the request. Returns an object with `object` set to `response.input_tokens` and an `input_tokens` count.

认证

需要 Connected Account

Tags

getinputtokencounts
Get the organization's hard spend limit.OPENAI_GETORGANIZATIONSPENDLIMITGet the organization's hard spend limit.

Get the organization's hard spend limit.

认证

需要 Connected Account

Tags

getorganizationspendlimit
Get a project's hard spend limit.OPENAI_GETPROJECTSPENDLIMITGet a project's hard spend limit.

Get a project's hard spend limit.

认证

需要 Connected Account

Tags

getprojectspendlimit
End an active Realtime API call, whether it was initiated over SIP or WebRTC.OPENAI_HANGUP_REALTIME_CALLEnd an active Realtime API call, whether it was initiated over SIP or WebRTC.

End an active Realtime API call, whether it was initiated over SIP or WebRTC.

认证

需要 Connected Account

Tags

Realtime
Create an invite for a user to the organization. The invite must be accepted by the user before they have access to the organization.OPENAI_INVITE_USERCreate an invite for a user to the organization. The invite must be accepted by the user before they have access to the organization.

Create an invite for a user to the organization. The invite must be accepted by the user before they have access to the organization.

认证

需要 Connected Account

Tags

Invites
Returns a list of assistants.OPENAI_LIST_ASSISTANTSReturns a list of assistants.

Returns a list of assistants.

认证

需要 Connected Account

Tags

Assistants
List user actions and configuration changes within this organization.OPENAI_LIST_AUDIT_LOGSList user actions and configuration changes within this organization.

List user actions and configuration changes within this organization.

认证

需要 Connected Account

Tags

Audit Logs
List your organization's batches.OPENAI_LIST_BATCHESList your organization's batches.

List your organization's batches.

认证

需要 Connected Account

Tags

Batch
List stored Chat Completions. Only Chat Completions that have been stored with the `store` parameter set to `true` will be returned.OPENAI_LIST_CHAT_COMPLETIONSList stored Chat Completions. Only Chat Completions that have been stored with the `store` parameter set to `true` will be returned.

List stored Chat Completions. Only Chat Completions that have been stored with the `store` parameter set to `true` will be returned.

认证

需要 Connected Account

Tags

Chat
List Container filesOPENAI_LIST_CONTAINER_FILESLists container files.

Lists container files.

认证

需要 Connected Account

Tags

listcontainerfiles
List ContainersOPENAI_LIST_CONTAINERSLists containers.

Lists containers.

认证

需要 Connected Account

Tags

listcontainers
List all items for a conversation with the given ID.OPENAI_LIST_CONVERSATION_ITEMSList all items for a conversation with the given ID.

List all items for a conversation with the given ID.

认证

需要 Connected Account

Tags

Conversations
List evaluations for a project.OPENAI_LIST_EVALSList evaluations for a project.

List evaluations for a project.

认证

需要 Connected Account

Tags

Evals
Returns a list of files.OPENAI_LIST_FILESReturns a list of files.

Returns a list of files.

认证

需要 Connected Account

Tags

Files
Returns a list of vector store files in a batch.OPENAI_LIST_FILES_IN_VECTOR_STORE_BATCHReturns a list of vector store files in a batch.

Returns a list of vector store files in a batch.

认证

需要 Connected Account

Tags

Vector stores
**NOTE:** This endpoint requires an [admin API key](../admin-api-keys). Organization owners can use this endpoint to view all permissions for a fine-tuned model checkpoint.OPENAI_LIST_FINE_TUNING_CHECKPOINT_PERMISSIONS**NOTE:** This endpoint requires an [admin API key](../admin-api-keys). Organization owners can use this endpoint to view all permissions for a fine-tuned model checkpoint.

**NOTE:** This endpoint requires an [admin API key](../admin-api-keys). Organization owners can use this endpoint to view all permissions for a fine-tuned model checkpoint.

认证

需要 Connected Account

Tags

Fine-tuning
Get status updates for a fine-tuning job.OPENAI_LIST_FINE_TUNING_EVENTSGet status updates for a fine-tuning job.

Get status updates for a fine-tuning job.

认证

需要 Connected Account

Tags

Fine-tuning
List checkpoints for a fine-tuning job.OPENAI_LIST_FINE_TUNING_JOB_CHECKPOINTSList checkpoints for a fine-tuning job.

List checkpoints for a fine-tuning job.

认证

需要 Connected Account

Tags

Fine-tuning
Lists the organization roles assigned to a group within the organization.OPENAI_LIST_GROUP_ROLE_ASSIGNMENTSLists the organization roles assigned to a group within the organization.

Lists the organization roles assigned to a group within the organization.

认证

需要 Connected Account

Tags

Group organization role assignments
Lists the users assigned to a group.OPENAI_LIST_GROUP_USERSLists the users assigned to a group.

Lists the users assigned to a group.

认证

需要 Connected Account

Tags

Group users
Lists all groups in the organization.OPENAI_LIST_GROUPSLists all groups in the organization.

Lists all groups in the organization.

认证

需要 Connected Account

Tags

Groups
Returns a list of input items for a given response.OPENAI_LIST_INPUT_ITEMSReturns a list of input items for a given response.

Returns a list of input items for a given response.

认证

需要 Connected Account

Tags

Responses
Returns a list of invites in the organization.OPENAI_LIST_INVITESReturns a list of invites in the organization.

Returns a list of invites in the organization.

认证

需要 Connected Account

Tags

Invites
Returns a list of messages for a given thread.OPENAI_LIST_MESSAGESReturns a list of messages for a given thread.

Returns a list of messages for a given thread.

认证

需要 Connected Account

Tags

Assistants
Lists the currently available models, and provides basic information about each one such as the owner and availability.OPENAI_LIST_MODELSLists the currently available models, and provides basic information about each one such as the owner and availability.

Lists the currently available models, and provides basic information about each one such as the owner and availability.

认证

需要 Connected Account

Tags

Models
List uploaded certificates for this organization.OPENAI_LIST_ORGANIZATION_CERTIFICATESList uploaded certificates for this organization.

List uploaded certificates for this organization.

认证

需要 Connected Account

Tags

Certificates
Lists organization spend alerts.OPENAI_LIST_ORGANIZATION_SPEND_ALERTSLists organization spend alerts.

Lists organization spend alerts.

认证

需要 Connected Account

Tags

Spend alerts
List your organization's fine-tuning jobsOPENAI_LIST_PAGINATED_FINE_TUNING_JOBSList your organization's fine-tuning jobs

List your organization's fine-tuning jobs

认证

需要 Connected Account

Tags

Fine-tuning
Returns a list of API keys in the project.OPENAI_LIST_PROJECT_API_KEYSReturns a list of API keys in the project.

Returns a list of API keys in the project.

认证

需要 Connected Account

Tags

Projects
List certificates for this project.OPENAI_LIST_PROJECT_CERTIFICATESList certificates for this project.

List certificates for this project.

认证

需要 Connected Account

Tags

Certificates
Lists the project roles assigned to a group within a project.OPENAI_LIST_PROJECT_GROUP_ROLE_ASSIGNMENTSLists the project roles assigned to a group within a project.

Lists the project roles assigned to a group within a project.

认证

需要 Connected Account

Tags

Project group role assignments
Lists the groups that have access to a project.OPENAI_LIST_PROJECT_GROUPSLists the groups that have access to a project.

Lists the groups that have access to a project.

认证

需要 Connected Account

Tags

Project groups
Returns the rate limits per model for a project.OPENAI_LIST_PROJECT_RATE_LIMITSReturns the rate limits per model for a project.

Returns the rate limits per model for a project.

认证

需要 Connected Account

Tags

Projects
Lists the roles configured for a project.OPENAI_LIST_PROJECT_ROLESLists the roles configured for a project.

Lists the roles configured for a project.

认证

需要 Connected Account

Tags

Roles
Returns a list of service accounts in the project.OPENAI_LIST_PROJECT_SERVICE_ACCOUNTSReturns a list of service accounts in the project.

Returns a list of service accounts in the project.

认证

需要 Connected Account

Tags

Projects
Lists project spend alerts.OPENAI_LIST_PROJECT_SPEND_ALERTSLists project spend alerts.

Lists project spend alerts.

认证

需要 Connected Account

Tags

Spend alerts
Lists the project roles assigned to a user within a project.OPENAI_LIST_PROJECT_USER_ROLE_ASSIGNMENTSLists the project roles assigned to a user within a project.

Lists the project roles assigned to a user within a project.

认证

需要 Connected Account

Tags

Project user role assignments
Returns a list of users in the project.OPENAI_LIST_PROJECT_USERSReturns a list of users in the project.

Returns a list of users in the project.

认证

需要 Connected Account

Tags

Projects
Returns a list of projects.OPENAI_LIST_PROJECTSReturns a list of projects.

Returns a list of projects.

认证

需要 Connected Account

Tags

Projects
Lists the roles configured for the organization.OPENAI_LIST_ROLESLists the roles configured for the organization.

Lists the roles configured for the organization.

认证

需要 Connected Account

Tags

Roles
Returns a list of run steps belonging to a run.OPENAI_LIST_RUN_STEPSReturns a list of run steps belonging to a run.

Returns a list of run steps belonging to a run.

认证

需要 Connected Account

Tags

Assistants
Returns a list of runs belonging to a thread.OPENAI_LIST_RUNSReturns a list of runs belonging to a thread.

Returns a list of runs belonging to a thread.

认证

需要 Connected Account

Tags

Assistants
List skill versions for a skill.OPENAI_LIST_SKILL_VERSIONSList skill versions for a skill.

List skill versions for a skill.

认证

需要 Connected Account

Tags

Skills
List all skills for the current project.OPENAI_LIST_SKILLSList all skills for the current project.

List all skills for the current project.

认证

需要 Connected Account

Tags

Skills
List items that belong to a ChatKit thread.OPENAI_LIST_THREAD_ITEMS_METHODList items that belong to a ChatKit thread.

List items that belong to a ChatKit thread.

认证

需要 Connected Account

Tags

listthreaditemsmethod
List ChatKit threads with optional pagination and user filters.OPENAI_LIST_THREADS_METHODList ChatKit threads with optional pagination and user filters.

List ChatKit threads with optional pagination and user filters.

认证

需要 Connected Account

Tags

listthreadsmethod
Lists the organization roles assigned to a user within the organization.OPENAI_LIST_USER_ROLE_ASSIGNMENTSLists the organization roles assigned to a user within the organization.

Lists the organization roles assigned to a user within the organization.

认证

需要 Connected Account

Tags

User organization role assignments
Lists all of the users in the organization.OPENAI_LIST_USERSLists all of the users in the organization.

Lists all of the users in the organization.

认证

需要 Connected Account

Tags

Users
Returns a list of vector store files.OPENAI_LIST_VECTOR_STORE_FILESReturns a list of vector store files.

Returns a list of vector store files.

认证

需要 Connected Account

Tags

Vector stores
Returns a list of vector stores.OPENAI_LIST_VECTOR_STORESReturns a list of vector stores.

Returns a list of vector stores.

认证

需要 Connected Account

Tags

Vector stores
List recently generated videos for the current project.OPENAI_LIST_VIDEOSList recently generated videos for the current project.

List recently generated videos for the current project.

认证

需要 Connected Account

Tags

Videos
Returns a list of voice consent recordings.OPENAI_LIST_VOICE_CONSENTSList consent recordings available to your organization for creating custom voices. See the [custom voices guide](/docs/guides/text-to-speech#custom-voices). Custom voices are limited to eligible customers.

List consent recordings available to your organization for creating custom voices. See the [custom voices guide](/docs/guides/text-to-speech#custom-voices). Custom voices are limited to eligible customers.

认证

需要 Connected Account

Tags

Audio
Modifies an assistant.OPENAI_MODIFY_ASSISTANTModifies an assistant.

Modifies an assistant.

认证

需要 Connected Account

Tags

Assistants
Modify a certificate. Note that only the name can be modified.OPENAI_MODIFY_CERTIFICATEModify a certificate. Note that only the name can be modified.

Modify a certificate. Note that only the name can be modified.

认证

需要 Connected Account

Tags

Certificates
Modifies a message.OPENAI_MODIFY_MESSAGEModifies a message.

Modifies a message.

认证

需要 Connected Account

Tags

Assistants
Modifies a project in the organization.OPENAI_MODIFY_PROJECTModifies a project in the organization.

Modifies a project in the organization.

认证

需要 Connected Account

Tags

Projects
Modifies a user's role in the project.OPENAI_MODIFY_PROJECT_USERModifies a user's role in the project.

Modifies a user's role in the project.

认证

需要 Connected Account

Tags

Projects
Modifies a run.OPENAI_MODIFY_RUNModifies a run.

Modifies a run.

认证

需要 Connected Account

Tags

Assistants
Modifies a thread.OPENAI_MODIFY_THREADModifies a thread.

Modifies a thread.

认证

需要 Connected Account

Tags

Assistants
Modifies a user's role in the organization.OPENAI_MODIFY_USERModifies a user's role in the organization.

Modifies a user's role in the organization.

认证

需要 Connected Account

Tags

Users
Modifies a vector store.OPENAI_MODIFY_VECTOR_STOREModifies a vector store.

Modifies a vector store.

认证

需要 Connected Account

Tags

Vector stores
Pause a fine-tune job.OPENAI_PAUSE_FINE_TUNING_JOBPause a fine-tune job.

Pause a fine-tune job.

认证

需要 Connected Account

Tags

Fine-tuning
Transfer an active SIP call to a new destination using the SIP REFER verb.OPENAI_REFER_REALTIME_CALLTransfer an active SIP call to a new destination using the SIP REFER verb.

Transfer an active SIP call to a new destination using the SIP REFER verb.

认证

需要 Connected Account

Tags

Realtime
Decline an incoming SIP call by returning a SIP status code to the caller.OPENAI_REJECT_REALTIME_CALLDecline an incoming SIP call by returning a SIP status code to the caller.

Decline an incoming SIP call by returning a SIP status code to the caller.

认证

需要 Connected Account

Tags

Realtime
Removes a user from a group.OPENAI_REMOVE_GROUP_USERRemoves a user from a group.

Removes a user from a group.

认证

需要 Connected Account

Tags

Group users
Revokes a group's access to a project.OPENAI_REMOVE_PROJECT_GROUPRevokes a group's access to a project.

Revokes a group's access to a project.

认证

需要 Connected Account

Tags

Project groups
Resume a fine-tune job.OPENAI_RESUME_FINE_TUNING_JOBResume a fine-tune job.

Resume a fine-tune job.

认证

需要 Connected Account

Tags

Fine-tuning
Retrieves a batch.OPENAI_RETRIEVE_BATCHRetrieves a batch.

Retrieves a batch.

认证

需要 Connected Account

Tags

Batch
Retrieve ContainerOPENAI_RETRIEVE_CONTAINERRetrieves a container.

Retrieves a container.

认证

需要 Connected Account

Tags

retrievecontainer
Retrieve Container FileOPENAI_RETRIEVE_CONTAINER_FILERetrieves a container file.

Retrieves a container file.

认证

需要 Connected Account

Tags

retrievecontainerfile
Retrieve Container File ContentOPENAI_RETRIEVE_CONTAINER_FILE_CONTENTRetrieves a container file content.

Retrieves a container file content.

认证

需要 Connected Account

Tags

retrievecontainerfilecontent
Returns information about a specific file.OPENAI_RETRIEVE_FILEReturns information about a specific file.

Returns information about a specific file.

认证

需要 Connected Account

Tags

Files
Get info about a fine-tuning job. [Learn more about fine-tuning](/docs/guides/model-optimization)OPENAI_RETRIEVE_FINE_TUNING_JOBGet info about a fine-tuning job. [Learn more about fine-tuning](/docs/guides/model-optimization)

Get info about a fine-tuning job. [Learn more about fine-tuning](/docs/guides/model-optimization)

认证

需要 Connected Account

Tags

Fine-tuning
Retrieves a group.OPENAI_RETRIEVE_GROUPRetrieves a group.

Retrieves a group.

认证

需要 Connected Account

Tags

Groups
Retrieves an organization role assigned to a group.OPENAI_RETRIEVE_GROUP_ROLERetrieves an organization role assigned to a group.

Retrieves an organization role assigned to a group.

认证

需要 Connected Account

Tags

Group organization role assignments
Retrieves a user in a group.OPENAI_RETRIEVE_GROUP_USERRetrieves a user in a group.

Retrieves a user in a group.

认证

需要 Connected Account

Tags

Group users
Retrieves an invite.OPENAI_RETRIEVE_INVITERetrieves an invite.

Retrieves an invite.

认证

需要 Connected Account

Tags

Invites
Retrieves a model instance, providing basic information about the model such as the owner and permissioning.OPENAI_RETRIEVE_MODELRetrieves a model instance, providing basic information about the model such as the owner and permissioning.

Retrieves a model instance, providing basic information about the model such as the owner and permissioning.

认证

需要 Connected Account

Tags

Models
Retrieves organization data retention controls.OPENAI_RETRIEVE_ORGANIZATION_DATA_RETENTIONRetrieves organization data retention controls.

Retrieves organization data retention controls.

认证

需要 Connected Account

Tags

Data retention
Retrieves an organization spend alert.OPENAI_RETRIEVE_ORGANIZATION_SPEND_ALERTRetrieves an organization spend alert.

Retrieves an organization spend alert.

认证

需要 Connected Account

Tags

Spend alerts
Retrieves a project.OPENAI_RETRIEVE_PROJECTRetrieves a project.

Retrieves a project.

认证

需要 Connected Account

Tags

Projects
Retrieves an API key in the project.OPENAI_RETRIEVE_PROJECT_API_KEYRetrieves an API key in the project.

Retrieves an API key in the project.

认证

需要 Connected Account

Tags

Projects
Retrieves project data retention controls.OPENAI_RETRIEVE_PROJECT_DATA_RETENTIONRetrieves project data retention controls.

Retrieves project data retention controls.

认证

需要 Connected Account

Tags

Data retention
Retrieves a project's group.OPENAI_RETRIEVE_PROJECT_GROUPRetrieves a project's group.

Retrieves a project's group.

认证

需要 Connected Account

Tags

Project groups
Retrieves a project role assigned to a group.OPENAI_RETRIEVE_PROJECT_GROUP_ROLERetrieves a project role assigned to a group.

Retrieves a project role assigned to a group.

认证

需要 Connected Account

Tags

Project group role assignments
Returns hosted tool permissions for a project.OPENAI_RETRIEVE_PROJECT_HOSTED_TOOL_PERMISSIONSReturns hosted tool permissions for a project.

Returns hosted tool permissions for a project.

认证

需要 Connected Account

Tags

Hosted tools
Returns model permissions for a project.OPENAI_RETRIEVE_PROJECT_MODEL_PERMISSIONSReturns model permissions for a project.

Returns model permissions for a project.

认证

需要 Connected Account

Tags

Projects
Retrieves a project role.OPENAI_RETRIEVE_PROJECT_ROLERetrieves a project role.

Retrieves a project role.

认证

需要 Connected Account

Tags

Roles
Retrieves a service account in the project.OPENAI_RETRIEVE_PROJECT_SERVICE_ACCOUNTRetrieves a service account in the project.

Retrieves a service account in the project.

认证

需要 Connected Account

Tags

Projects
Retrieves a project spend alert.OPENAI_RETRIEVE_PROJECT_SPEND_ALERTRetrieves a project spend alert.

Retrieves a project spend alert.

认证

需要 Connected Account

Tags

Spend alerts
Retrieves a user in the project.OPENAI_RETRIEVE_PROJECT_USERRetrieves a user in the project.

Retrieves a user in the project.

认证

需要 Connected Account

Tags

Projects
Retrieves a project role assigned to a user.OPENAI_RETRIEVE_PROJECT_USER_ROLERetrieves a project role assigned to a user.

Retrieves a project role assigned to a user.

认证

需要 Connected Account

Tags

Project user role assignments
Retrieves an organization role.OPENAI_RETRIEVE_ROLERetrieves an organization role.

Retrieves an organization role.

认证

需要 Connected Account

Tags

Roles
Retrieves a user by their identifier.OPENAI_RETRIEVE_USERRetrieves a user by their identifier.

Retrieves a user by their identifier.

认证

需要 Connected Account

Tags

Users
Retrieves an organization role assigned to a user.OPENAI_RETRIEVE_USER_ROLERetrieves an organization role assigned to a user.

Retrieves an organization role assigned to a user.

认证

需要 Connected Account

Tags

User organization role assignments
Retrieve the parsed contents of a vector store file.OPENAI_RETRIEVE_VECTOR_STORE_FILE_CONTENTRetrieve the parsed contents of a vector store file.

Retrieve the parsed contents of a vector store file.

认证

需要 Connected Account

Tags

Vector stores
Download the generated video bytes or a derived preview asset. Streams the rendered video content for the specified video job.OPENAI_RETRIEVE_VIDEO_CONTENTDownload the generated video bytes or a derived preview asset. Streams the rendered video content for the specified video job.

Download the generated video bytes or a derived preview asset. Streams the rendered video content for the specified video job.

认证

需要 Connected Account

Tags

Videos
Run a grader.OPENAI_RUN_GRADERRun a grader.

Run a grader.

认证

需要 Connected Account

Tags

Fine-tuning
Search a vector store for relevant chunks based on a query and file attributes filter.OPENAI_SEARCH_VECTOR_STORESearch a vector store for relevant chunks based on a query and file attributes filter.

Search a vector store for relevant chunks based on a query and file attributes filter.

认证

需要 Connected Account

Tags

Vector stores
When a run has the `status: "requires_action"` and `required_action.type` is `submit_tool_outputs`, this endpoint can be used to submit the outputs from the tool calls once they're all completed. All outputs must be submitted in a single request.OPENAI_SUBMIT_TOOL_OUPUTS_TO_RUNWhen a run has the `status: "requires_action"` and `required_action.type` is `submit_tool_outputs`, this endpoint can be used to submit the outputs from the tool calls once they're all completed. All outputs must be submitted in a single request.

When a run has the `status: "requires_action"` and `required_action.type` is `submit_tool_outputs`, this endpoint can be used to submit the outputs from the tool calls once they're all completed. All outputs must be submitted in a single request.

认证

需要 Connected Account

Tags

Assistants
Unassigns an organization role from a group within the organization.OPENAI_UNASSIGN_GROUP_ROLEUnassigns an organization role from a group within the organization.

Unassigns an organization role from a group within the organization.

认证

需要 Connected Account

Tags

Group organization role assignments
Unassigns a project role from a group within a project.OPENAI_UNASSIGN_PROJECT_GROUP_ROLEUnassigns a project role from a group within a project.

Unassigns a project role from a group within a project.

认证

需要 Connected Account

Tags

Project group role assignments
Unassigns a project role from a user within a project.OPENAI_UNASSIGN_PROJECT_USER_ROLEUnassigns a project role from a user within a project.

Unassigns a project role from a user within a project.

认证

需要 Connected Account

Tags

Project user role assignments
Unassigns an organization role from a user within the organization.OPENAI_UNASSIGN_USER_ROLEUnassigns an organization role from a user within the organization.

Unassigns an organization role from a user within the organization.

认证

需要 Connected Account

Tags

User organization role assignments
Modify a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` can be modified. Currently, the only supported modification is to update the `metadata` field.OPENAI_UPDATE_CHAT_COMPLETIONModify a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` can be modified. Currently, the only supported modification is to update the `metadata` field.

Modify a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` can be modified. Currently, the only supported modification is to update the `metadata` field.

认证

需要 Connected Account

Tags

Chat
Update a conversationOPENAI_UPDATE_CONVERSATIONUpdate a conversation

Update a conversation

认证

需要 Connected Account

Tags

Conversations
Update certain properties of an evaluation.OPENAI_UPDATE_EVALUpdate certain properties of an evaluation.

Update certain properties of an evaluation.

认证

需要 Connected Account

Tags

Evals
Updates a group's information.OPENAI_UPDATE_GROUPUpdates a group's information.

Updates a group's information.

认证

需要 Connected Account

Tags

Groups
Updates organization data retention controls.OPENAI_UPDATE_ORGANIZATION_DATA_RETENTIONUpdates organization data retention controls.

Updates organization data retention controls.

认证

需要 Connected Account

Tags

Data retention
Updates an organization spend alert.OPENAI_UPDATE_ORGANIZATION_SPEND_ALERTUpdates an organization spend alert.

Updates an organization spend alert.

认证

需要 Connected Account

Tags

Spend alerts
Updates project data retention controls.OPENAI_UPDATE_PROJECT_DATA_RETENTIONUpdates project data retention controls.

Updates project data retention controls.

认证

需要 Connected Account

Tags

Data retention
Updates hosted tool permissions for a project.OPENAI_UPDATE_PROJECT_HOSTED_TOOL_PERMISSIONSUpdates hosted tool permissions for a project.

Updates hosted tool permissions for a project.

认证

需要 Connected Account

Tags

Hosted tools
Updates model permissions for a project.OPENAI_UPDATE_PROJECT_MODEL_PERMISSIONSUpdates model permissions for a project.

Updates model permissions for a project.

认证

需要 Connected Account

Tags

Projects
Updates a project rate limit.OPENAI_UPDATE_PROJECT_RATE_LIMITSUpdates a project rate limit.

Updates a project rate limit.

认证

需要 Connected Account

Tags

Projects
Updates an existing project role.OPENAI_UPDATE_PROJECT_ROLEUpdates an existing project role.

Updates an existing project role.

认证

需要 Connected Account

Tags

Roles
Updates a service account in the project.OPENAI_UPDATE_PROJECT_SERVICE_ACCOUNTUpdates a service account in the project.

Updates a service account in the project.

认证

需要 Connected Account

Tags

Projects
Updates a project spend alert.OPENAI_UPDATE_PROJECT_SPEND_ALERTUpdates a project spend alert.

Updates a project spend alert.

认证

需要 Connected Account

Tags

Spend alerts
Updates an existing organization role.OPENAI_UPDATE_ROLEUpdates an existing organization role.

Updates an existing organization role.

认证

需要 Connected Account

Tags

Roles
Update the default version pointer for a skill.OPENAI_UPDATE_SKILL_DEFAULT_VERSIONUpdate the default version pointer for a skill.

Update the default version pointer for a skill.

认证

需要 Connected Account

Tags

Skills
Update attributes on a vector store file.OPENAI_UPDATE_VECTOR_STORE_FILE_ATTRIBUTESUpdate attributes on a vector store file.

Update attributes on a vector store file.

认证

需要 Connected Account

Tags

Vector stores
Updates a voice consent recording (metadata only).OPENAI_UPDATE_VOICE_CONSENTUpdate consent recording metadata used for creating custom voices. This endpoint updates metadata only and does not replace the underlying audio. See the [custom voices guide](/docs/guides/text-to-speech#custom-voices). Custom voices are limited to eligible customers.

Update consent recording metadata used for creating custom voices. This endpoint updates metadata only and does not replace the underlying audio. See the [custom voices guide](/docs/guides/text-to-speech#custom-voices). Custom voices are limited to eligible customers.

认证

需要 Connected Account

Tags

Audio
Create or replace the organization's hard spend limit.OPENAI_UPDATEORGANIZATIONSPENDLIMITCreate or replace the organization's hard spend limit.

Create or replace the organization's hard spend limit.

认证

需要 Connected Account

Tags

updateorganizationspendlimit
Create or replace a project's hard spend limit.OPENAI_UPDATEPROJECTSPENDLIMITCreate or replace a project's hard spend limit.

Create or replace a project's hard spend limit.

认证

需要 Connected Account

Tags

updateprojectspendlimit
Upload a certificate to the organization. This does **not** automatically activate the certificate. Organizations can upload up to 50 certificates.OPENAI_UPLOAD_CERTIFICATEUpload a certificate to the organization. This does **not** automatically activate the certificate. Organizations can upload up to 50 certificates.

Upload a certificate to the organization. This does **not** automatically activate the certificate. Organizations can upload up to 50 certificates.

认证

需要 Connected Account

Tags

Certificates
Get audio speeches usage details for the organization.OPENAI_USAGE_AUDIO_SPEECHESGet audio speeches usage details for the organization.

Get audio speeches usage details for the organization.

认证

需要 Connected Account

Tags

Usage
Get audio transcriptions usage details for the organization.OPENAI_USAGE_AUDIO_TRANSCRIPTIONSGet audio transcriptions usage details for the organization.

Get audio transcriptions usage details for the organization.

认证

需要 Connected Account

Tags

Usage
Get code interpreter sessions usage details for the organization.OPENAI_USAGE_CODE_INTERPRETER_SESSIONSGet code interpreter sessions usage details for the organization.

Get code interpreter sessions usage details for the organization.

认证

需要 Connected Account

Tags

Usage
Get completions usage details for the organization.OPENAI_USAGE_COMPLETIONSGet completions usage details for the organization.

Get completions usage details for the organization.

认证

需要 Connected Account

Tags

Usage
Get costs details for the organization.OPENAI_USAGE_COSTSGet costs details for the organization.

Get costs details for the organization.

认证

需要 Connected Account

Tags

Usage
Get embeddings usage details for the organization.OPENAI_USAGE_EMBEDDINGSGet embeddings usage details for the organization.

Get embeddings usage details for the organization.

认证

需要 Connected Account

Tags

Usage
Get file search calls usage details for the organization.OPENAI_USAGE_FILE_SEARCH_CALLSGet file search calls usage details for the organization.

Get file search calls usage details for the organization.

认证

需要 Connected Account

Tags

Usage
Get images usage details for the organization.OPENAI_USAGE_IMAGESGet images usage details for the organization.

Get images usage details for the organization.

认证

需要 Connected Account

Tags

Usage
Get moderations usage details for the organization.OPENAI_USAGE_MODERATIONSGet moderations usage details for the organization.

Get moderations usage details for the organization.

认证

需要 Connected Account

Tags

Usage
Get vector stores usage details for the organization.OPENAI_USAGE_VECTOR_STORESGet vector stores usage details for the organization.

Get vector stores usage details for the organization.

认证

需要 Connected Account

Tags

Usage
Get web search calls usage details for the organization.OPENAI_USAGE_WEB_SEARCH_CALLSGet web search calls usage details for the organization.

Get web search calls usage details for the organization.

认证

需要 Connected Account

Tags

Usage
Validate a grader.OPENAI_VALIDATE_GRADERValidate a grader.

Validate a grader.

认证

需要 Connected Account

Tags

Fine-tuning

Provider 资源