OpenAI
No catalog description yet.
Authentication
| Method | Kind | Status | Details |
|---|---|---|---|
| API Key | api_key | available | — |
Call a tool
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 catalog
Available tools
278 callable operations
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.Connection
Accept an incoming SIP call and configure the realtime session that will handle it.
Authentication
Connected account requiredTags
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.Connection
Activate certificates at the organization level. You can atomically and idempotently activate up to 10 certificates at a time.
Authentication
Connected account requiredTags
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.Connection
Activate certificates at the project level. You can atomically and idempotently activate up to 10 certificates at a time.
Authentication
Connected account requiredTags
Adds a user to a group.OPENAI_ADD_GROUP_USERAdds a user to a group.Connection
Adds a user to a group.
Authentication
Connected account requiredTags
Grants a group access to a project.OPENAI_ADD_PROJECT_GROUPGrants a group access to a project.Connection
Grants a group access to a project.
Authentication
Connected account requiredTags
Create an organization admin API keyOPENAI_ADMIN_API_KEYS_CREATECreate a new admin-level API key for the organization.Connection
Create a new admin-level API key for the organization.
Authentication
Connected account requiredTags
Delete an organization admin API keyOPENAI_ADMIN_API_KEYS_DELETEDelete the specified admin API key.Connection
Delete the specified admin API key.
Authentication
Connected account requiredTags
Retrieve a single organization API keyOPENAI_ADMIN_API_KEYS_GETGet details for a specific organization API key by its ID.Connection
Get details for a specific organization API key by its ID.
Authentication
Connected account requiredTags
List organization API keysOPENAI_ADMIN_API_KEYS_LISTRetrieve a paginated list of organization admin API keys.Connection
Retrieve a paginated list of organization admin API keys.
Authentication
Connected account requiredTags
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.Connection
Archives a project in the organization. Archived projects cannot be used or updated.
Authentication
Connected account requiredTags
Assigns an organization role to a group within the organization.OPENAI_ASSIGN_GROUP_ROLEAssigns an organization role to a group within the organization.Connection
Assigns an organization role to a group within the organization.
Authentication
Connected account requiredTags
Assigns a project role to a group within a project.OPENAI_ASSIGN_PROJECT_GROUP_ROLEAssigns a project role to a group within a project.Connection
Assigns a project role to a group within a project.
Authentication
Connected account requiredTags
Assigns a project role to a user within a project.OPENAI_ASSIGN_PROJECT_USER_ROLEAssigns a project role to a user within a project.Connection
Assigns a project role to a user within a project.
Authentication
Connected account requiredTags
Assigns an organization role to a user within the organization.OPENAI_ASSIGN_USER_ROLEAssigns an organization role to a user within the organization.Connection
Assigns an organization role to a user within the organization.
Authentication
Connected account requiredTags
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).Connection
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).
Authentication
Connected account requiredTags
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).Connection
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).
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
Deletes a model response with the given ID.OPENAI_BETA_DELETE_RESPONSEDeletes a model response with the given ID.Connection
Deletes a model response with the given ID.
Authentication
Connected account requiredTags
Retrieves a model response with the given ID.OPENAI_BETA_GET_RESPONSERetrieves a model response with the given ID.Connection
Retrieves a model response with the given ID.
Authentication
Connected account requiredTags
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.Connection
Returns input token counts of the request. Returns an object with `object` set to `response.input_tokens` and an `input_tokens` count.
Authentication
Connected account requiredTags
Returns a list of input items for a given response.OPENAI_BETA_LIST_INPUT_ITEMSReturns a list of input items for a given response.Connection
Returns a list of input items for a given response.
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
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.Connection
Cancel an active ChatKit session and return its most recent metadata. Cancelling prevents new requests from using the issued client secret.
Authentication
Connected account requiredTags
Cancel an ongoing evaluation run.OPENAI_CANCEL_EVAL_RUNCancel an ongoing evaluation run.Connection
Cancel an ongoing evaluation run.
Authentication
Connected account requiredTags
Immediately cancel a fine-tune job.OPENAI_CANCEL_FINE_TUNING_JOBImmediately cancel a fine-tune job.Connection
Immediately cancel a fine-tune job.
Authentication
Connected account requiredTags
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).Connection
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).
Authentication
Connected account requiredTags
Cancels a run that is `in_progress`.OPENAI_CANCEL_RUNCancels a run that is `in_progress`.Connection
Cancels a run that is `in_progress`.
Authentication
Connected account requiredTags
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`.Connection
Cancels the Upload. No Parts may be added after an Upload is cancelled. Returns the Upload object with status `cancelled`.
Authentication
Connected account requiredTags
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.Connection
Cancel a vector store file batch. This attempts to cancel the processing of files in this batch as soon as possible.
Authentication
Connected account requiredTags
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).Connection
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).
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
Create an assistant with a model and instructions.OPENAI_CREATE_ASSISTANTCreate an assistant with a model and instructions.Connection
Create an assistant with a model and instructions.
Authentication
Connected account requiredTags
Creates and executes a batch from an uploaded file of requestsOPENAI_CREATE_BATCHCreates and executes a batch from an uploaded file of requestsConnection
Creates and executes a batch from an uploaded file of requests
Authentication
Connected account requiredTags
**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.Connection
**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.
Authentication
Connected account requiredTags
Create a ChatKit session.OPENAI_CREATE_CHAT_SESSION_METHODCreate a ChatKit session.Connection
Create a ChatKit session.
Authentication
Connected account requiredTags
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.Connection
Creates a completion for the provided prompt and parameters. Returns a completion object, or a sequence of completion objects if the request is streamed.
Authentication
Connected account requiredTags
Create ContainerOPENAI_CREATE_CONTAINERCreates a container.Connection
Creates a container.
Authentication
Connected account requiredTags
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.Connection
Creates a container file.
Authentication
Connected account requiredTags
Create a conversation.OPENAI_CREATE_CONVERSATIONCreate a conversation.Connection
Create a conversation.
Authentication
Connected account requiredTags
Create items in a conversation with the given ID.OPENAI_CREATE_CONVERSATION_ITEMSCreate items in a conversation with the given ID.Connection
Create items in a conversation with the given ID.
Authentication
Connected account requiredTags
Creates an embedding vector representing the input text.OPENAI_CREATE_EMBEDDINGCreates an embedding vector representing the input text.Connection
Creates an embedding vector representing the input text.
Authentication
Connected account requiredTags
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).Connection
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).
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
**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.Connection
**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.
Authentication
Connected account requiredTags
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)Connection
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)
Authentication
Connected account requiredTags
Creates a new group in the organization.OPENAI_CREATE_GROUPCreates a new group in the organization.Connection
Creates a new group in the organization.
Authentication
Connected account requiredTags
Creates an image given a prompt. [Learn more](/docs/guides/images).OPENAI_CREATE_IMAGECreates an image given a prompt. [Learn more](/docs/guides/images).Connection
Creates an image given a prompt. [Learn more](/docs/guides/images).
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
Create a message.OPENAI_CREATE_MESSAGECreate a message.Connection
Create a message.
Authentication
Connected account requiredTags
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).Connection
Classifies if text and/or image inputs are potentially harmful. Learn more in the [moderation guide](/docs/guides/moderation).
Authentication
Connected account requiredTags
Creates an organization spend alert.OPENAI_CREATE_ORGANIZATION_SPEND_ALERTCreates an organization spend alert.Connection
Creates an organization spend alert.
Authentication
Connected account requiredTags
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.Connection
Create a new project in the organization. Projects can be created and archived, but cannot be deleted.
Authentication
Connected account requiredTags
Creates a custom role for a project.OPENAI_CREATE_PROJECT_ROLECreates a custom role for a project.Connection
Creates a custom role for a project.
Authentication
Connected account requiredTags
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.Connection
Creates a new service account in the project. By default, this also returns an unredacted API key for the service account.
Authentication
Connected account requiredTags
Creates a project spend alert.OPENAI_CREATE_PROJECT_SPEND_ALERTCreates a project spend alert.Connection
Creates a project spend alert.
Authentication
Connected account requiredTags
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.Connection
Adds a user to the project. Users must already be members of the organization to be added to a project.
Authentication
Connected account requiredTags
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`.Connection
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`.
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
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`.Connection
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`.
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
Creates a custom role for the organization.OPENAI_CREATE_ROLECreates a custom role for the organization.Connection
Creates a custom role for the organization.
Authentication
Connected account requiredTags
Create a run.OPENAI_CREATE_RUNCreate a run.Connection
Create a run.
Authentication
Connected account requiredTags
Create a new skill.OPENAI_CREATE_SKILLCreate a new skill.Connection
Create a new skill.
Authentication
Connected account requiredTags
Create a new immutable skill version.OPENAI_CREATE_SKILL_VERSIONCreate a new immutable skill version.Connection
Create a new immutable skill version.
Authentication
Connected account requiredTags
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.Connection
Generates audio from the input text. Returns the audio file content, or a stream of audio events.
Authentication
Connected account requiredTags
Create a thread.OPENAI_CREATE_THREADCreate a thread.Connection
Create a thread.
Authentication
Connected account requiredTags
Create a thread and run it in one request.OPENAI_CREATE_THREAD_AND_RUNCreate a thread and run it in one request.Connection
Create a thread and run it in one request.
Authentication
Connected account requiredTags
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`.Connection
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`.
Authentication
Connected account requiredTags
Create a vector store.OPENAI_CREATE_VECTOR_STORECreate a vector store.Connection
Create a vector store.
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
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.Connection
Create a new video generation job from a prompt and optional reference assets.
Authentication
Connected account requiredTags
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.Connection
Create a new video generation job by editing a source video or existing generated video.
Authentication
Connected account requiredTags
Create an extension of a completed video.OPENAI_CREATE_VIDEO_EXTENDCreate an extension of a completed video.Connection
Create an extension of a completed video.
Authentication
Connected account requiredTags
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.Connection
Create a remix of a completed video using a refreshed prompt.
Authentication
Connected account requiredTags
Creates an API key for a service account in the project.OPENAI_CREATEAN_APIKEYFORASERVICEACCOUNTCreates an API key for a service account in the project.Connection
Creates an API key for a service account in the project.
Authentication
Connected account requiredTags
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.Connection
Deactivate certificates at the organization level. You can atomically and idempotently deactivate up to 10 certificates at a time.
Authentication
Connected account requiredTags
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.Connection
Deactivate certificates at the project level. You can atomically and idempotently deactivate up to 10 certificates at a time.
Authentication
Connected account requiredTags
Delete an assistant.OPENAI_DELETE_ASSISTANTDelete an assistant.Connection
Delete an assistant.
Authentication
Connected account requiredTags
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.Connection
Delete a certificate from the organization. The certificate must be inactive for the organization and all projects.
Authentication
Connected account requiredTags
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.Connection
Delete a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` can be deleted.
Authentication
Connected account requiredTags
Delete ContainerOPENAI_DELETE_CONTAINERDelete a container.Connection
Delete a container.
Authentication
Connected account requiredTags
Delete Container FileOPENAI_DELETE_CONTAINER_FILEDelete a container file.Connection
Delete a container file.
Authentication
Connected account requiredTags
Delete a conversation. Items in the conversation will not be deleted.OPENAI_DELETE_CONVERSATIONDelete a conversation. Items in the conversation will not be deleted.Connection
Delete a conversation. Items in the conversation will not be deleted.
Authentication
Connected account requiredTags
Delete an item from a conversation with the given IDs.OPENAI_DELETE_CONVERSATION_ITEMDelete an item from a conversation with the given IDs.Connection
Delete an item from a conversation with the given IDs.
Authentication
Connected account requiredTags
Delete an evaluation.OPENAI_DELETE_EVALDelete an evaluation.Connection
Delete an evaluation.
Authentication
Connected account requiredTags
Delete an eval run.OPENAI_DELETE_EVAL_RUNDelete an eval run.Connection
Delete an eval run.
Authentication
Connected account requiredTags
Delete a file and remove it from all vector stores.OPENAI_DELETE_FILEDelete a file and remove it from all vector stores.Connection
Delete a file and remove it from all vector stores.
Authentication
Connected account requiredTags
**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.Connection
**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.
Authentication
Connected account requiredTags
Deletes a group from the organization.OPENAI_DELETE_GROUPDeletes a group from the organization.Connection
Deletes a group from the organization.
Authentication
Connected account requiredTags
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.Connection
Delete an invite. If the invite has already been accepted, it cannot be deleted.
Authentication
Connected account requiredTags
Deletes a message.OPENAI_DELETE_MESSAGEDeletes a message.Connection
Deletes a message.
Authentication
Connected account requiredTags
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.Connection
Delete a fine-tuned model. You must have the Owner role in your organization to delete a model.
Authentication
Connected account requiredTags
Deletes an organization spend alert.OPENAI_DELETE_ORGANIZATION_SPEND_ALERTDeletes an organization spend alert.Connection
Deletes an organization spend alert.
Authentication
Connected account requiredTags
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.Connection
Deletes an API key from the project. Returns confirmation of the key deletion, or an error if the key belonged to a service account.
Authentication
Connected account requiredTags
Deletes model permissions for a project.OPENAI_DELETE_PROJECT_MODEL_PERMISSIONSDeletes model permissions for a project.Connection
Deletes model permissions for a project.
Authentication
Connected account requiredTags
Deletes a custom role from a project.OPENAI_DELETE_PROJECT_ROLEDeletes a custom role from a project.Connection
Deletes a custom role from a project.
Authentication
Connected account requiredTags
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).Connection
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).
Authentication
Connected account requiredTags
Deletes a project spend alert.OPENAI_DELETE_PROJECT_SPEND_ALERTDeletes a project spend alert.Connection
Deletes a project spend alert.
Authentication
Connected account requiredTags
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).Connection
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).
Authentication
Connected account requiredTags
Deletes a model response with the given ID.OPENAI_DELETE_RESPONSEDeletes a model response with the given ID.Connection
Deletes a model response with the given ID.
Authentication
Connected account requiredTags
Deletes a custom role from the organization.OPENAI_DELETE_ROLEDeletes a custom role from the organization.Connection
Deletes a custom role from the organization.
Authentication
Connected account requiredTags
Delete a skill by its ID.OPENAI_DELETE_SKILLDelete a skill by its ID.Connection
Delete a skill by its ID.
Authentication
Connected account requiredTags
Delete a skill version.OPENAI_DELETE_SKILL_VERSIONDelete a skill version.Connection
Delete a skill version.
Authentication
Connected account requiredTags
Delete a thread.OPENAI_DELETE_THREADDelete a thread.Connection
Delete a thread.
Authentication
Connected account requiredTags
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.Connection
Delete a ChatKit thread along with its items and stored attachments.
Authentication
Connected account requiredTags
Deletes a user from the organization.OPENAI_DELETE_USERDeletes a user from the organization.Connection
Deletes a user from the organization.
Authentication
Connected account requiredTags
Delete a vector store.OPENAI_DELETE_VECTOR_STOREDelete a vector store.Connection
Delete a vector store.
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
Permanently delete a completed or failed video and its stored assets.OPENAI_DELETE_VIDEOPermanently delete a completed or failed video and its stored assets.Connection
Permanently delete a completed or failed video and its stored assets.
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
Delete the organization's hard spend limit.OPENAI_DELETEORGANIZATIONSPENDLIMITDelete the organization's hard spend limit.Connection
Delete the organization's hard spend limit.
Authentication
Connected account requiredTags
Delete a project's hard spend limit.OPENAI_DELETEPROJECTSPENDLIMITDelete a project's hard spend limit.Connection
Delete a project's hard spend limit.
Authentication
Connected account requiredTags
Returns a response containing the contents of the specified file.OPENAI_DOWNLOAD_FILEReturns a response containing the contents of the specified file.Connection
Returns a response containing the contents of the specified file.
Authentication
Connected account requiredTags
Retrieves an assistant.OPENAI_GET_ASSISTANTRetrieves an assistant.Connection
Retrieves an assistant.
Authentication
Connected account requiredTags
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.Connection
Get a certificate that has been uploaded to the organization. You can get a certificate regardless of whether it is active or not.
Authentication
Connected account requiredTags
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.Connection
Get a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` will be returned.
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
Get a conversationOPENAI_GET_CONVERSATIONGet a conversationConnection
Get a conversation
Authentication
Connected account requiredTags
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.Connection
Get a single item from a conversation with the given IDs.
Authentication
Connected account requiredTags
Get an evaluation by ID.OPENAI_GET_EVALGet an evaluation by ID.Connection
Get an evaluation by ID.
Authentication
Connected account requiredTags
Get an evaluation run by ID.OPENAI_GET_EVAL_RUNGet an evaluation run by ID.Connection
Get an evaluation run by ID.
Authentication
Connected account requiredTags
Get an evaluation run output item by ID.OPENAI_GET_EVAL_RUN_OUTPUT_ITEMGet an evaluation run output item by ID.Connection
Get an evaluation run output item by ID.
Authentication
Connected account requiredTags
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.Connection
Get a list of output items for an evaluation run.
Authentication
Connected account requiredTags
Get a list of runs for an evaluation.OPENAI_GET_EVAL_RUNSGet a list of runs for an evaluation.Connection
Get a list of runs for an evaluation.
Authentication
Connected account requiredTags
Retrieve a message.OPENAI_GET_MESSAGERetrieve a message.Connection
Retrieve a message.
Authentication
Connected account requiredTags
Retrieves a model response with the given ID.OPENAI_GET_RESPONSERetrieves a model response with the given ID.Connection
Retrieves a model response with the given ID.
Authentication
Connected account requiredTags
Retrieves a run.OPENAI_GET_RUNRetrieves a run.Connection
Retrieves a run.
Authentication
Connected account requiredTags
Retrieves a run step.OPENAI_GET_RUN_STEPRetrieves a run step.Connection
Retrieves a run step.
Authentication
Connected account requiredTags
Get a skill by its ID.OPENAI_GET_SKILLGet a skill by its ID.Connection
Get a skill by its ID.
Authentication
Connected account requiredTags
Download a skill zip bundle by its ID.OPENAI_GET_SKILL_CONTENTDownload a skill zip bundle by its ID.Connection
Download a skill zip bundle by its ID.
Authentication
Connected account requiredTags
Get a specific skill version.OPENAI_GET_SKILL_VERSIONGet a specific skill version.Connection
Get a specific skill version.
Authentication
Connected account requiredTags
Download a skill version zip bundle.OPENAI_GET_SKILL_VERSION_CONTENTDownload a skill version zip bundle.Connection
Download a skill version zip bundle.
Authentication
Connected account requiredTags
Retrieves a thread.OPENAI_GET_THREADRetrieves a thread.Connection
Retrieves a thread.
Authentication
Connected account requiredTags
Retrieve a ChatKit thread by its identifier.OPENAI_GET_THREAD_METHODRetrieve a ChatKit thread by its identifier.Connection
Retrieve a ChatKit thread by its identifier.
Authentication
Connected account requiredTags
Retrieves a vector store.OPENAI_GET_VECTOR_STORERetrieves a vector store.Connection
Retrieves a vector store.
Authentication
Connected account requiredTags
Retrieves a vector store file.OPENAI_GET_VECTOR_STORE_FILERetrieves a vector store file.Connection
Retrieves a vector store file.
Authentication
Connected account requiredTags
Retrieves a vector store file batch.OPENAI_GET_VECTOR_STORE_FILE_BATCHRetrieves a vector store file batch.Connection
Retrieves a vector store file batch.
Authentication
Connected account requiredTags
Fetch the latest metadata for a generated video.OPENAI_GET_VIDEOFetch the latest metadata for a generated video.Connection
Fetch the latest metadata for a generated video.
Authentication
Connected account requiredTags
Fetch a character.OPENAI_GET_VIDEO_CHARACTERFetch a character.Connection
Fetch a character.
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
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.Connection
Returns input token counts of the request. Returns an object with `object` set to `response.input_tokens` and an `input_tokens` count.
Authentication
Connected account requiredTags
Get the organization's hard spend limit.OPENAI_GETORGANIZATIONSPENDLIMITGet the organization's hard spend limit.Connection
Get the organization's hard spend limit.
Authentication
Connected account requiredTags
Get a project's hard spend limit.OPENAI_GETPROJECTSPENDLIMITGet a project's hard spend limit.Connection
Get a project's hard spend limit.
Authentication
Connected account requiredTags
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.Connection
End an active Realtime API call, whether it was initiated over SIP or WebRTC.
Authentication
Connected account requiredTags
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.Connection
Create an invite for a user to the organization. The invite must be accepted by the user before they have access to the organization.
Authentication
Connected account requiredTags
Returns a list of assistants.OPENAI_LIST_ASSISTANTSReturns a list of assistants.Connection
Returns a list of assistants.
Authentication
Connected account requiredTags
List user actions and configuration changes within this organization.OPENAI_LIST_AUDIT_LOGSList user actions and configuration changes within this organization.Connection
List user actions and configuration changes within this organization.
Authentication
Connected account requiredTags
List your organization's batches.OPENAI_LIST_BATCHESList your organization's batches.Connection
List your organization's batches.
Authentication
Connected account requiredTags
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.Connection
List stored Chat Completions. Only Chat Completions that have been stored with the `store` parameter set to `true` will be returned.
Authentication
Connected account requiredTags
List Container filesOPENAI_LIST_CONTAINER_FILESLists container files.Connection
Lists container files.
Authentication
Connected account requiredTags
List ContainersOPENAI_LIST_CONTAINERSLists containers.Connection
Lists containers.
Authentication
Connected account requiredTags
List all items for a conversation with the given ID.OPENAI_LIST_CONVERSATION_ITEMSList all items for a conversation with the given ID.Connection
List all items for a conversation with the given ID.
Authentication
Connected account requiredTags
List evaluations for a project.OPENAI_LIST_EVALSList evaluations for a project.Connection
List evaluations for a project.
Authentication
Connected account requiredTags
Returns a list of files.OPENAI_LIST_FILESReturns a list of files.Connection
Returns a list of files.
Authentication
Connected account requiredTags
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.Connection
Returns a list of vector store files in a batch.
Authentication
Connected account requiredTags
**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.Connection
**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.
Authentication
Connected account requiredTags
Get status updates for a fine-tuning job.OPENAI_LIST_FINE_TUNING_EVENTSGet status updates for a fine-tuning job.Connection
Get status updates for a fine-tuning job.
Authentication
Connected account requiredTags
List checkpoints for a fine-tuning job.OPENAI_LIST_FINE_TUNING_JOB_CHECKPOINTSList checkpoints for a fine-tuning job.Connection
List checkpoints for a fine-tuning job.
Authentication
Connected account requiredTags
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.Connection
Lists the organization roles assigned to a group within the organization.
Authentication
Connected account requiredTags
Lists the users assigned to a group.OPENAI_LIST_GROUP_USERSLists the users assigned to a group.Connection
Lists the users assigned to a group.
Authentication
Connected account requiredTags
Lists all groups in the organization.OPENAI_LIST_GROUPSLists all groups in the organization.Connection
Lists all groups in the organization.
Authentication
Connected account requiredTags
Returns a list of input items for a given response.OPENAI_LIST_INPUT_ITEMSReturns a list of input items for a given response.Connection
Returns a list of input items for a given response.
Authentication
Connected account requiredTags
Returns a list of invites in the organization.OPENAI_LIST_INVITESReturns a list of invites in the organization.Connection
Returns a list of invites in the organization.
Authentication
Connected account requiredTags
Returns a list of messages for a given thread.OPENAI_LIST_MESSAGESReturns a list of messages for a given thread.Connection
Returns a list of messages for a given thread.
Authentication
Connected account requiredTags
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.Connection
Lists the currently available models, and provides basic information about each one such as the owner and availability.
Authentication
Connected account requiredTags
List uploaded certificates for this organization.OPENAI_LIST_ORGANIZATION_CERTIFICATESList uploaded certificates for this organization.Connection
List uploaded certificates for this organization.
Authentication
Connected account requiredTags
Lists organization spend alerts.OPENAI_LIST_ORGANIZATION_SPEND_ALERTSLists organization spend alerts.Connection
Lists organization spend alerts.
Authentication
Connected account requiredTags
List your organization's fine-tuning jobsOPENAI_LIST_PAGINATED_FINE_TUNING_JOBSList your organization's fine-tuning jobsConnection
List your organization's fine-tuning jobs
Authentication
Connected account requiredTags
Returns a list of API keys in the project.OPENAI_LIST_PROJECT_API_KEYSReturns a list of API keys in the project.Connection
Returns a list of API keys in the project.
Authentication
Connected account requiredTags
List certificates for this project.OPENAI_LIST_PROJECT_CERTIFICATESList certificates for this project.Connection
List certificates for this project.
Authentication
Connected account requiredTags
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.Connection
Lists the project roles assigned to a group within a project.
Authentication
Connected account requiredTags
Lists the groups that have access to a project.OPENAI_LIST_PROJECT_GROUPSLists the groups that have access to a project.Connection
Lists the groups that have access to a project.
Authentication
Connected account requiredTags
Returns the rate limits per model for a project.OPENAI_LIST_PROJECT_RATE_LIMITSReturns the rate limits per model for a project.Connection
Returns the rate limits per model for a project.
Authentication
Connected account requiredTags
Lists the roles configured for a project.OPENAI_LIST_PROJECT_ROLESLists the roles configured for a project.Connection
Lists the roles configured for a project.
Authentication
Connected account requiredTags
Returns a list of service accounts in the project.OPENAI_LIST_PROJECT_SERVICE_ACCOUNTSReturns a list of service accounts in the project.Connection
Returns a list of service accounts in the project.
Authentication
Connected account requiredTags
Lists project spend alerts.OPENAI_LIST_PROJECT_SPEND_ALERTSLists project spend alerts.Connection
Lists project spend alerts.
Authentication
Connected account requiredTags
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.Connection
Lists the project roles assigned to a user within a project.
Authentication
Connected account requiredTags
Returns a list of users in the project.OPENAI_LIST_PROJECT_USERSReturns a list of users in the project.Connection
Returns a list of users in the project.
Authentication
Connected account requiredTags
Returns a list of projects.OPENAI_LIST_PROJECTSReturns a list of projects.Connection
Returns a list of projects.
Authentication
Connected account requiredTags
Lists the roles configured for the organization.OPENAI_LIST_ROLESLists the roles configured for the organization.Connection
Lists the roles configured for the organization.
Authentication
Connected account requiredTags
Returns a list of run steps belonging to a run.OPENAI_LIST_RUN_STEPSReturns a list of run steps belonging to a run.Connection
Returns a list of run steps belonging to a run.
Authentication
Connected account requiredTags
Returns a list of runs belonging to a thread.OPENAI_LIST_RUNSReturns a list of runs belonging to a thread.Connection
Returns a list of runs belonging to a thread.
Authentication
Connected account requiredTags
List skill versions for a skill.OPENAI_LIST_SKILL_VERSIONSList skill versions for a skill.Connection
List skill versions for a skill.
Authentication
Connected account requiredTags
List all skills for the current project.OPENAI_LIST_SKILLSList all skills for the current project.Connection
List all skills for the current project.
Authentication
Connected account requiredTags
List items that belong to a ChatKit thread.OPENAI_LIST_THREAD_ITEMS_METHODList items that belong to a ChatKit thread.Connection
List items that belong to a ChatKit thread.
Authentication
Connected account requiredTags
List ChatKit threads with optional pagination and user filters.OPENAI_LIST_THREADS_METHODList ChatKit threads with optional pagination and user filters.Connection
List ChatKit threads with optional pagination and user filters.
Authentication
Connected account requiredTags
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.Connection
Lists the organization roles assigned to a user within the organization.
Authentication
Connected account requiredTags
Lists all of the users in the organization.OPENAI_LIST_USERSLists all of the users in the organization.Connection
Lists all of the users in the organization.
Authentication
Connected account requiredTags
Returns a list of vector store files.OPENAI_LIST_VECTOR_STORE_FILESReturns a list of vector store files.Connection
Returns a list of vector store files.
Authentication
Connected account requiredTags
Returns a list of vector stores.OPENAI_LIST_VECTOR_STORESReturns a list of vector stores.Connection
Returns a list of vector stores.
Authentication
Connected account requiredTags
List recently generated videos for the current project.OPENAI_LIST_VIDEOSList recently generated videos for the current project.Connection
List recently generated videos for the current project.
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
Modifies an assistant.OPENAI_MODIFY_ASSISTANTModifies an assistant.Connection
Modifies an assistant.
Authentication
Connected account requiredTags
Modify a certificate. Note that only the name can be modified.OPENAI_MODIFY_CERTIFICATEModify a certificate. Note that only the name can be modified.Connection
Modify a certificate. Note that only the name can be modified.
Authentication
Connected account requiredTags
Modifies a message.OPENAI_MODIFY_MESSAGEModifies a message.Connection
Modifies a message.
Authentication
Connected account requiredTags
Modifies a project in the organization.OPENAI_MODIFY_PROJECTModifies a project in the organization.Connection
Modifies a project in the organization.
Authentication
Connected account requiredTags
Modifies a user's role in the project.OPENAI_MODIFY_PROJECT_USERModifies a user's role in the project.Connection
Modifies a user's role in the project.
Authentication
Connected account requiredTags
Modifies a run.OPENAI_MODIFY_RUNModifies a run.Connection
Modifies a run.
Authentication
Connected account requiredTags
Modifies a thread.OPENAI_MODIFY_THREADModifies a thread.Connection
Modifies a thread.
Authentication
Connected account requiredTags
Modifies a user's role in the organization.OPENAI_MODIFY_USERModifies a user's role in the organization.Connection
Modifies a user's role in the organization.
Authentication
Connected account requiredTags
Modifies a vector store.OPENAI_MODIFY_VECTOR_STOREModifies a vector store.Connection
Modifies a vector store.
Authentication
Connected account requiredTags
Pause a fine-tune job.OPENAI_PAUSE_FINE_TUNING_JOBPause a fine-tune job.Connection
Pause a fine-tune job.
Authentication
Connected account requiredTags
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.Connection
Transfer an active SIP call to a new destination using the SIP REFER verb.
Authentication
Connected account requiredTags
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.Connection
Decline an incoming SIP call by returning a SIP status code to the caller.
Authentication
Connected account requiredTags
Removes a user from a group.OPENAI_REMOVE_GROUP_USERRemoves a user from a group.Connection
Removes a user from a group.
Authentication
Connected account requiredTags
Revokes a group's access to a project.OPENAI_REMOVE_PROJECT_GROUPRevokes a group's access to a project.Connection
Revokes a group's access to a project.
Authentication
Connected account requiredTags
Resume a fine-tune job.OPENAI_RESUME_FINE_TUNING_JOBResume a fine-tune job.Connection
Resume a fine-tune job.
Authentication
Connected account requiredTags
Retrieves a batch.OPENAI_RETRIEVE_BATCHRetrieves a batch.Connection
Retrieves a batch.
Authentication
Connected account requiredTags
Retrieve ContainerOPENAI_RETRIEVE_CONTAINERRetrieves a container.Connection
Retrieves a container.
Authentication
Connected account requiredTags
Retrieve Container FileOPENAI_RETRIEVE_CONTAINER_FILERetrieves a container file.Connection
Retrieves a container file.
Authentication
Connected account requiredTags
Retrieve Container File ContentOPENAI_RETRIEVE_CONTAINER_FILE_CONTENTRetrieves a container file content.Connection
Retrieves a container file content.
Authentication
Connected account requiredTags
Returns information about a specific file.OPENAI_RETRIEVE_FILEReturns information about a specific file.Connection
Returns information about a specific file.
Authentication
Connected account requiredTags
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)Connection
Get info about a fine-tuning job. [Learn more about fine-tuning](/docs/guides/model-optimization)
Authentication
Connected account requiredTags
Retrieves a group.OPENAI_RETRIEVE_GROUPRetrieves a group.Connection
Retrieves a group.
Authentication
Connected account requiredTags
Retrieves an organization role assigned to a group.OPENAI_RETRIEVE_GROUP_ROLERetrieves an organization role assigned to a group.Connection
Retrieves an organization role assigned to a group.
Authentication
Connected account requiredTags
Retrieves a user in a group.OPENAI_RETRIEVE_GROUP_USERRetrieves a user in a group.Connection
Retrieves a user in a group.
Authentication
Connected account requiredTags
Retrieves an invite.OPENAI_RETRIEVE_INVITERetrieves an invite.Connection
Retrieves an invite.
Authentication
Connected account requiredTags
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.Connection
Retrieves a model instance, providing basic information about the model such as the owner and permissioning.
Authentication
Connected account requiredTags
Retrieves organization data retention controls.OPENAI_RETRIEVE_ORGANIZATION_DATA_RETENTIONRetrieves organization data retention controls.Connection
Retrieves organization data retention controls.
Authentication
Connected account requiredTags
Retrieves an organization spend alert.OPENAI_RETRIEVE_ORGANIZATION_SPEND_ALERTRetrieves an organization spend alert.Connection
Retrieves an organization spend alert.
Authentication
Connected account requiredTags
Retrieves a project.OPENAI_RETRIEVE_PROJECTRetrieves a project.Connection
Retrieves a project.
Authentication
Connected account requiredTags
Retrieves an API key in the project.OPENAI_RETRIEVE_PROJECT_API_KEYRetrieves an API key in the project.Connection
Retrieves an API key in the project.
Authentication
Connected account requiredTags
Retrieves project data retention controls.OPENAI_RETRIEVE_PROJECT_DATA_RETENTIONRetrieves project data retention controls.Connection
Retrieves project data retention controls.
Authentication
Connected account requiredTags
Retrieves a project's group.OPENAI_RETRIEVE_PROJECT_GROUPRetrieves a project's group.Connection
Retrieves a project's group.
Authentication
Connected account requiredTags
Retrieves a project role assigned to a group.OPENAI_RETRIEVE_PROJECT_GROUP_ROLERetrieves a project role assigned to a group.Connection
Retrieves a project role assigned to a group.
Authentication
Connected account requiredTags
Returns hosted tool permissions for a project.OPENAI_RETRIEVE_PROJECT_HOSTED_TOOL_PERMISSIONSReturns hosted tool permissions for a project.Connection
Returns hosted tool permissions for a project.
Authentication
Connected account requiredTags
Returns model permissions for a project.OPENAI_RETRIEVE_PROJECT_MODEL_PERMISSIONSReturns model permissions for a project.Connection
Returns model permissions for a project.
Authentication
Connected account requiredTags
Retrieves a project role.OPENAI_RETRIEVE_PROJECT_ROLERetrieves a project role.Connection
Retrieves a project role.
Authentication
Connected account requiredTags
Retrieves a service account in the project.OPENAI_RETRIEVE_PROJECT_SERVICE_ACCOUNTRetrieves a service account in the project.Connection
Retrieves a service account in the project.
Authentication
Connected account requiredTags
Retrieves a project spend alert.OPENAI_RETRIEVE_PROJECT_SPEND_ALERTRetrieves a project spend alert.Connection
Retrieves a project spend alert.
Authentication
Connected account requiredTags
Retrieves a user in the project.OPENAI_RETRIEVE_PROJECT_USERRetrieves a user in the project.Connection
Retrieves a user in the project.
Authentication
Connected account requiredTags
Retrieves a project role assigned to a user.OPENAI_RETRIEVE_PROJECT_USER_ROLERetrieves a project role assigned to a user.Connection
Retrieves a project role assigned to a user.
Authentication
Connected account requiredTags
Retrieves an organization role.OPENAI_RETRIEVE_ROLERetrieves an organization role.Connection
Retrieves an organization role.
Authentication
Connected account requiredTags
Retrieves a user by their identifier.OPENAI_RETRIEVE_USERRetrieves a user by their identifier.Connection
Retrieves a user by their identifier.
Authentication
Connected account requiredTags
Retrieves an organization role assigned to a user.OPENAI_RETRIEVE_USER_ROLERetrieves an organization role assigned to a user.Connection
Retrieves an organization role assigned to a user.
Authentication
Connected account requiredTags
Retrieve the parsed contents of a vector store file.OPENAI_RETRIEVE_VECTOR_STORE_FILE_CONTENTRetrieve the parsed contents of a vector store file.Connection
Retrieve the parsed contents of a vector store file.
Authentication
Connected account requiredTags
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.Connection
Download the generated video bytes or a derived preview asset. Streams the rendered video content for the specified video job.
Authentication
Connected account requiredTags
Run a grader.OPENAI_RUN_GRADERRun a grader.Connection
Run a grader.
Authentication
Connected account requiredTags
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.Connection
Search a vector store for relevant chunks based on a query and file attributes filter.
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
Unassigns an organization role from a group within the organization.OPENAI_UNASSIGN_GROUP_ROLEUnassigns an organization role from a group within the organization.Connection
Unassigns an organization role from a group within the organization.
Authentication
Connected account requiredTags
Unassigns a project role from a group within a project.OPENAI_UNASSIGN_PROJECT_GROUP_ROLEUnassigns a project role from a group within a project.Connection
Unassigns a project role from a group within a project.
Authentication
Connected account requiredTags
Unassigns a project role from a user within a project.OPENAI_UNASSIGN_PROJECT_USER_ROLEUnassigns a project role from a user within a project.Connection
Unassigns a project role from a user within a project.
Authentication
Connected account requiredTags
Unassigns an organization role from a user within the organization.OPENAI_UNASSIGN_USER_ROLEUnassigns an organization role from a user within the organization.Connection
Unassigns an organization role from a user within the organization.
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
Update a conversationOPENAI_UPDATE_CONVERSATIONUpdate a conversationConnection
Update a conversation
Authentication
Connected account requiredTags
Update certain properties of an evaluation.OPENAI_UPDATE_EVALUpdate certain properties of an evaluation.Connection
Update certain properties of an evaluation.
Authentication
Connected account requiredTags
Updates a group's information.OPENAI_UPDATE_GROUPUpdates a group's information.Connection
Updates a group's information.
Authentication
Connected account requiredTags
Updates organization data retention controls.OPENAI_UPDATE_ORGANIZATION_DATA_RETENTIONUpdates organization data retention controls.Connection
Updates organization data retention controls.
Authentication
Connected account requiredTags
Updates an organization spend alert.OPENAI_UPDATE_ORGANIZATION_SPEND_ALERTUpdates an organization spend alert.Connection
Updates an organization spend alert.
Authentication
Connected account requiredTags
Updates project data retention controls.OPENAI_UPDATE_PROJECT_DATA_RETENTIONUpdates project data retention controls.Connection
Updates project data retention controls.
Authentication
Connected account requiredTags
Updates hosted tool permissions for a project.OPENAI_UPDATE_PROJECT_HOSTED_TOOL_PERMISSIONSUpdates hosted tool permissions for a project.Connection
Updates hosted tool permissions for a project.
Authentication
Connected account requiredTags
Updates model permissions for a project.OPENAI_UPDATE_PROJECT_MODEL_PERMISSIONSUpdates model permissions for a project.Connection
Updates model permissions for a project.
Authentication
Connected account requiredTags
Updates a project rate limit.OPENAI_UPDATE_PROJECT_RATE_LIMITSUpdates a project rate limit.Connection
Updates a project rate limit.
Authentication
Connected account requiredTags
Updates an existing project role.OPENAI_UPDATE_PROJECT_ROLEUpdates an existing project role.Connection
Updates an existing project role.
Authentication
Connected account requiredTags
Updates a service account in the project.OPENAI_UPDATE_PROJECT_SERVICE_ACCOUNTUpdates a service account in the project.Connection
Updates a service account in the project.
Authentication
Connected account requiredTags
Updates a project spend alert.OPENAI_UPDATE_PROJECT_SPEND_ALERTUpdates a project spend alert.Connection
Updates a project spend alert.
Authentication
Connected account requiredTags
Updates an existing organization role.OPENAI_UPDATE_ROLEUpdates an existing organization role.Connection
Updates an existing organization role.
Authentication
Connected account requiredTags
Update the default version pointer for a skill.OPENAI_UPDATE_SKILL_DEFAULT_VERSIONUpdate the default version pointer for a skill.Connection
Update the default version pointer for a skill.
Authentication
Connected account requiredTags
Update attributes on a vector store file.OPENAI_UPDATE_VECTOR_STORE_FILE_ATTRIBUTESUpdate attributes on a vector store file.Connection
Update attributes on a vector store file.
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
Create or replace the organization's hard spend limit.OPENAI_UPDATEORGANIZATIONSPENDLIMITCreate or replace the organization's hard spend limit.Connection
Create or replace the organization's hard spend limit.
Authentication
Connected account requiredTags
Create or replace a project's hard spend limit.OPENAI_UPDATEPROJECTSPENDLIMITCreate or replace a project's hard spend limit.Connection
Create or replace a project's hard spend limit.
Authentication
Connected account requiredTags
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.Connection
Upload a certificate to the organization. This does **not** automatically activate the certificate. Organizations can upload up to 50 certificates.
Authentication
Connected account requiredTags
Get audio speeches usage details for the organization.OPENAI_USAGE_AUDIO_SPEECHESGet audio speeches usage details for the organization.Connection
Get audio speeches usage details for the organization.
Authentication
Connected account requiredTags
Get audio transcriptions usage details for the organization.OPENAI_USAGE_AUDIO_TRANSCRIPTIONSGet audio transcriptions usage details for the organization.Connection
Get audio transcriptions usage details for the organization.
Authentication
Connected account requiredTags
Get code interpreter sessions usage details for the organization.OPENAI_USAGE_CODE_INTERPRETER_SESSIONSGet code interpreter sessions usage details for the organization.Connection
Get code interpreter sessions usage details for the organization.
Authentication
Connected account requiredTags
Get completions usage details for the organization.OPENAI_USAGE_COMPLETIONSGet completions usage details for the organization.Connection
Get completions usage details for the organization.
Authentication
Connected account requiredTags
Get costs details for the organization.OPENAI_USAGE_COSTSGet costs details for the organization.Connection
Get costs details for the organization.
Authentication
Connected account requiredTags
Get embeddings usage details for the organization.OPENAI_USAGE_EMBEDDINGSGet embeddings usage details for the organization.Connection
Get embeddings usage details for the organization.
Authentication
Connected account requiredTags
Get file search calls usage details for the organization.OPENAI_USAGE_FILE_SEARCH_CALLSGet file search calls usage details for the organization.Connection
Get file search calls usage details for the organization.
Authentication
Connected account requiredTags
Get images usage details for the organization.OPENAI_USAGE_IMAGESGet images usage details for the organization.Connection
Get images usage details for the organization.
Authentication
Connected account requiredTags
Get moderations usage details for the organization.OPENAI_USAGE_MODERATIONSGet moderations usage details for the organization.Connection
Get moderations usage details for the organization.
Authentication
Connected account requiredTags
Get vector stores usage details for the organization.OPENAI_USAGE_VECTOR_STORESGet vector stores usage details for the organization.Connection
Get vector stores usage details for the organization.
Authentication
Connected account requiredTags
Get web search calls usage details for the organization.OPENAI_USAGE_WEB_SEARCH_CALLSGet web search calls usage details for the organization.Connection
Get web search calls usage details for the organization.
Authentication
Connected account requiredTags
Validate a grader.OPENAI_VALIDATE_GRADERValidate a grader.Connection
Validate a grader.
Authentication
Connected account requiredTags