SpyBara
Go Premium

Reference 2026-07-25 05:59 UTC to 2026-07-29 11:39 UTC

97 files changed +384 −19. View all changes and history on the product overview
2026
Wed 29 11:39 Sat 25 05:59 Thu 23 18:00 Wed 22 20:02 Mon 20 20:00 Fri 17 17:00 Thu 16 20:57 Wed 15 02:58 Tue 14 06:58 Mon 13 15:59 Sun 12 06:58 Fri 10 23:02 Thu 9 20:58 Tue 7 08:02
Details

1# Administration Overview1# Administration Overview

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3Use the Administration API to manage organization resources such as users, invites, projects, API keys, and audit logs.5Use the Administration API to manage organization resources such as users, invites, projects, API keys, and audit logs.

4To access these endpoints, [create an Admin API key](https://platform.openai.com/settings/organization/admin-keys). Admin API keys cannot be used for non-administration endpoints.6To access these endpoints, [create an Admin API key](https://platform.openai.com/settings/organization/admin-keys). Admin API keys cannot be used for non-administration endpoints.

5 7 

Details

1# Chat Completions Overview1# Chat Completions Overview

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3The Chat Completions API endpoint will generate a model response from a5The Chat Completions API endpoint will generate a model response from a

4list of messages comprising a conversation.6list of messages comprising a conversation.

5 7 

cli/index.md +167 −0 created

Details

1# OpenAI CLI

2 

3The official CLI for the [OpenAI REST API](https://platform.openai.com/docs).

4 

5<!-- x-release-please-start-version -->

6 

7## Installation

8 

9### Installing with Homebrew

10 

11```sh

12brew install openai/tools/openai

13```

14 

15### Installing with Go

16 

17To test or install the CLI locally, you need [Go](https://go.dev/doc/install) version 1.25 or later installed.

18 

19```sh

20go install 'github.com/openai/openai-cli/cmd/openai@latest'

21```

22 

23Once you have run `go install`, the binary is placed in your Go bin directory:

24 

25- **Default location**: `$HOME/go/bin` (or `$GOPATH/bin` if GOPATH is set)

26- **Check your path**: Run `go env GOPATH` to see the base directory

27 

28If commands aren't found after installation, add the Go bin directory to your PATH:

29 

30```sh

31# Add to your shell profile (.zshrc, .bashrc, etc.)

32export PATH="$PATH:$(go env GOPATH)/bin"

33```

34 

35<!-- x-release-please-end -->

36 

37### Running Locally

38 

39After cloning the git repository for this project, you can use the

40`scripts/run` script to run the tool locally:

41 

42```sh

43./scripts/run args...

44```

45 

46## Usage

47 

48The CLI follows a resource-based command structure:

49 

50```sh

51openai [resource] <command> [flags...]

52```

53 

54Standard API endpoints require an [API key](https://platform.openai.com/settings/organization/api-keys):

55 

56```sh

57export OPENAI_API_KEY="sk-..."

58 

59openai responses create \

60 --input "Say this is a test" \

61 --model gpt-5.5

62```

63 

64Admin endpoints require an [admin API key](https://platform.openai.com/settings/organization/admin-keys):

65 

66```sh

67export OPENAI_ADMIN_KEY="sk-admin-..."

68 

69openai admin:organization:usage completions \

70 --start-time 1735689600 \

71 --end-time 1735776000 \

72 --bucket-width 1d

73```

74 

75For details about specific commands, use the `--help` flag.

76 

77### Environment variables

78 

79| Environment variable | Required | Default value |

80| ----------------------- | -------- | ------------- |

81| `OPENAI_API_KEY` | no | `null` |

82| `OPENAI_ADMIN_KEY` | no | `null` |

83| `OPENAI_ORG_ID` | no | `null` |

84| `OPENAI_PROJECT_ID` | no | `null` |

85| `OPENAI_WEBHOOK_SECRET` | no | `null` |

86 

87### Global flags

88 

89- `--api-key` (can also be set with `OPENAI_API_KEY` env var)

90- `--admin-api-key` (can also be set with `OPENAI_ADMIN_KEY` env var)

91- `--organization` (can also be set with `OPENAI_ORG_ID` env var)

92- `--project` (can also be set with `OPENAI_PROJECT_ID` env var)

93- `--webhook-secret` (can also be set with `OPENAI_WEBHOOK_SECRET` env var)

94- `--help` - Show command line usage

95- `--debug` - Enable debug logging. This includes HTTP request/response details and bodies; do not share debug logs if they may contain sensitive payloads.

96- `--version`, `-v` - Show the CLI version

97- `--base-url` - Use a custom API backend URL

98- `--format` - Change the output format (`auto`, `explore`, `json`, `jsonl`, `pretty`, `raw`, `yaml`)

99- `--format-error` - Change the output format for errors (`auto`, `explore`, `json`, `jsonl`, `pretty`, `raw`, `yaml`)

100- `--transform` - Transform the data output using [GJSON syntax](https://github.com/tidwall/gjson/blob/master/SYNTAX.md)

101- `--transform-error` - Transform the error output using [GJSON syntax](https://github.com/tidwall/gjson/blob/master/SYNTAX.md)

102 

103### Passing files as arguments

104 

105To pass files to your API, you can use the `@myfile.ext` syntax:

106 

107```bash

108openai <command> --arg @abe.jpg

109```

110 

111Files can also be passed inside JSON or YAML blobs:

112 

113```bash

114openai <command> --arg '{image: "@abe.jpg"}'

115# Equivalent:

116openai <command> <<YAML

117arg:

118 image: "@abe.jpg"

119YAML

120```

121 

122If you need to pass a string literal that begins with an `@` sign, you can

123escape the `@` sign to avoid accidentally passing a file.

124 

125```bash

126openai <command> --username '\@abe'

127```

128 

129#### Explicit encoding

130 

131For JSON endpoints, the CLI tool does filetype sniffing to determine whether the

132file contents should be sent as a string literal (for plain text files) or as a

133base64-encoded string literal (for binary files). If you need to explicitly send

134the file as either plain text or base64-encoded data, you can use

135`@file://myfile.txt` (for string encoding) or `@data://myfile.dat` (for

136base64-encoding). Note that absolute paths will begin with `@file://` or

137`@data://`, followed by a third `/` (for example, `@file:///tmp/file.txt`).

138 

139```bash

140openai <command> --arg @data://file.txt

141```

142 

143## Linking different Go SDK versions

144 

145You can link the CLI against a different version of the OpenAI Go SDK

146for development purposes using the `./scripts/link` script.

147 

148To link to a specific version from a repository (version can be a branch,

149git tag, or commit hash):

150 

151```bash

152./scripts/link github.com/org/repo@version

153```

154 

155To link to a local copy of the SDK:

156 

157```bash

158./scripts/link ../path/to/openai-go

159```

160 

161If you run the link script without any arguments, it will default to `../openai-go`.

162 

163## License

164 

165Copyright 2026 OpenAI

166 

167This project is licensed under the [Apache License 2.0](LICENSE).

go/index.md +1 −1

Details

30<!-- x-release-please-start-version -->30<!-- x-release-please-start-version -->

31 31 

32```sh32```sh

33go get -u 'github.com/openai/openai-go/v3@v3.46.0'33go get -u 'github.com/openai/openai-go/v3@v3.47.0'

34```34```

35 35 

36<!-- x-release-please-end -->36<!-- x-release-please-end -->

java/index.md +22 −14

Details

2 2 

3<!-- x-release-please-start-version -->3<!-- x-release-please-start-version -->

4 4 

5[![Maven Central](https://img.shields.io/maven-central/v/com.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/4.45.0)5[![Maven Central](https://img.shields.io/maven-central/v/com.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/4.46.0)

6[![javadoc](https://javadoc.io/badge2/com.openai/openai-java/4.45.0/javadoc.svg)](https://javadoc.io/doc/com.openai/openai-java/4.45.0)6[![javadoc](https://javadoc.io/badge2/com.openai/openai-java/4.46.0/javadoc.svg)](https://javadoc.io/doc/com.openai/openai-java/4.46.0)

7 7 

8<!-- x-release-please-end -->8<!-- x-release-please-end -->

9 9 


11 11 

12<!-- x-release-please-start-version -->12<!-- x-release-please-start-version -->

13 13 

14The REST API documentation can be found on [platform.openai.com](https://platform.openai.com/docs). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.openai/openai-java/4.45.0).14The REST API documentation can be found on [platform.openai.com](https://platform.openai.com/docs). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.openai/openai-java/4.46.0).

15 15 

16<!-- x-release-please-end -->16<!-- x-release-please-end -->

17 17 


19 19 

20<!-- x-release-please-start-version -->20<!-- x-release-please-start-version -->

21 21 

22[_Try `openai-java-spring-boot-starter` if you're using Spring Boot!_](#spring-boot)

23 

24### Gradle22### Gradle

25 23 

26```kotlin24```kotlin

27implementation("com.openai:openai-java:4.45.0")25implementation("com.openai:openai-java:4.46.0")

28```26```

29 27 

30### Maven28### Maven


33<dependency>31<dependency>

34 <groupId>com.openai</groupId>32 <groupId>com.openai</groupId>

35 <artifactId>openai-java</artifactId>33 <artifactId>openai-java</artifactId>

36 <version>4.45.0</version>34 <version>4.46.0</version>

37</dependency>35</dependency>

38```36```

39 37 


41 39 

42## Requirements40## Requirements

43 41 

44This library requires Java 8 or later.42The framework-neutral SDK artifacts require Java 8 or later. Runtime floors and lifecycle states

43are declared per artifact in the [Java version support policy](docs/version-support-policy.md).

45 44 

46## Usage45## Usage

47 46 


95<!-- x-release-please-start-version -->94<!-- x-release-please-start-version -->

96 95 

97```kotlin96```kotlin

98implementation("com.openai:openai-java-bedrock:4.45.0")97implementation("com.openai:openai-java-bedrock:4.46.0")

99```98```

100 99 

101<!-- x-release-please-end -->100<!-- x-release-please-end -->


1453 1452 

1454## Spring Boot1453## Spring Boot

1455 1454 

1456If you're using Spring Boot, then you can use the SDK's [Spring Boot starter](https://docs.spring.io/spring-boot/docs/2.7.18/reference/htmlsingle/#using.build-systems.starters) to simplify configuration and get set up quickly.1455> [!WARNING]

1456> `openai-java-spring-boot-starter` targets Spring Boot 2.7 and is OpenAI EOL as of 2026-07-27.

1457> Version 4.45.0 is the final supported, tested, and published release. The artifact remains

1458> downloadable but receives no fixes, testing, or compatibility support. See the

1459> [Spring Boot 2 EOL decision and migration path](docs/spring-boot-2-eol.md). New Spring

1460> applications should depend on `openai-java` directly and provide an `OpenAIClient` bean until a

1461> supported, generation-specific integration is available.

1457 1462 

1458### Installation1463Existing Spring Boot 2 applications can use the legacy starter to simplify configuration.

1459 1464 

1460<!-- x-release-please-start-version -->1465### Installation

1461 1466 

1462#### Gradle1467#### Gradle

1463 1468 


1475</dependency>1480</dependency>

1476```1481```

1477 1482 

1478<!-- x-release-please-end -->

1479 

1480### Configuration1483### Configuration

1481 1484 

1482The [client's environment variable options](#client-configuration) can be configured in [`application.properties` or `application.yml`](https://docs.spring.io/spring-boot/how-to/properties-and-configuration.html).1485The [client's environment variable options](#client-configuration) can be configured in [`application.properties` or `application.yml`](https://docs.spring.io/spring-boot/how-to/properties-and-configuration.html).


19611. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_19641. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_

19622. Changes that we do not expect to impact the vast majority of users in practice.19652. Changes that we do not expect to impact the vast majority of users in practice.

1963 1966 

1967Those exceptions do not apply to raising a supported JVM or JDK API floor, changing an integration's

1968framework generation, removing a published artifact, or removing a transitive dependency that

1969consumers may rely on; those changes require a major release. Announcing EOL without removing or

1970changing the last available artifact may be a minor release.

1971 

1964We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.1972We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.

1965 1973 

1966We are keen for your feedback; please open an [issue](https://www.github.com/openai/openai-java/issues) with questions, bugs, or suggestions.1974We are keen for your feedback; please open an [issue](https://www.github.com/openai/openai-java/issues) with questions, bugs, or suggestions.

overview.md +2 −0

Details

1# API Overview1# API Overview

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3Use this reference to look up OpenAI API endpoints, request and response5Use this reference to look up OpenAI API endpoints, request and response

4schemas, streaming events, client library methods, and shared behavior such as6schemas, streaming events, client library methods, and shared behavior such as

5authentication, errors, rate limits, and request IDs.7authentication, errors, rate limits, and request IDs.

python/index.md +4 −2

Details

3<!-- prettier-ignore -->3<!-- prettier-ignore -->

4[![PyPI version](https://img.shields.io/pypi/v/openai.svg?label=pypi%20(stable))](https://pypi.org/project/openai/)4[![PyPI version](https://img.shields.io/pypi/v/openai.svg?label=pypi%20(stable))](https://pypi.org/project/openai/)

5 5 

6The OpenAI Python library provides convenient access to the OpenAI REST API from any Python 3.9+6The OpenAI Python library provides convenient access to the OpenAI REST API from any Python 3.10+

7application. The library includes type definitions for all request params and response fields,7application. The library includes type definitions for all request params and response fields,

8and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).8and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).

9 9 


10392. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_10392. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_

10403. Changes that we do not expect to impact the vast majority of users in practice.10403. Changes that we do not expect to impact the vast majority of users in practice.

1041 1041 

1042Minimum supported Python version increases are released as minor versions, not patches, when package metadata can keep users on the final compatible SDK release. See the [Python version support policy](./PYTHON_VERSION_POLICY.md) for the support window, release treatment, and compatibility history.

1043 

1042We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.1044We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.

1043 1045 

1044We are keen for your feedback; please open an [issue](https://www.github.com/openai/openai-python/issues) with questions, bugs, or suggestions.1046We are keen for your feedback; please open an [issue](https://www.github.com/openai/openai-python/issues) with questions, bugs, or suggestions.


1056 1058 

1057## Requirements1059## Requirements

1058 1060 

1059Python 3.9 or higher.1061Python 3.10 or higher.

1060 1062 

1061## Contributing1063## Contributing

1062 1064 

Details

1# Realtime Beta Overview1# Realtime Beta Overview

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3Communicate with a multimodal model in real time over low latency interfaces like WebRTC, WebSocket, and SIP. Natively supports speech-to-speech as well as text, image, and audio inputs and outputs.5Communicate with a multimodal model in real time over low latency interfaces like WebRTC, WebSocket, and SIP. Natively supports speech-to-speech as well as text, image, and audio inputs and outputs.

4[Learn more about the Realtime API](https://developers.openai.com/docs/guides/realtime).6[Learn more about the Realtime API](https://developers.openai.com/docs/guides/realtime).

Details

1# Assistants streaming events1# Assistants streaming events

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3Stream the result of executing a Run or resuming a Run after submitting tool outputs.5Stream the result of executing a Run or resuming a Run after submitting tool outputs.

4You can stream events from the [Create Thread and Run](https://developers.openai.com/docs/api-reference/runs/createThreadAndRun),6You can stream events from the [Create Thread and Run](https://developers.openai.com/docs/api-reference/runs/createThreadAndRun),

5[Create Run](https://developers.openai.com/docs/api-reference/runs/createRun), and [Submit Tool Outputs](https://developers.openai.com/docs/api-reference/runs/submitToolOutputs)7[Create Run](https://developers.openai.com/docs/api-reference/runs/createRun), and [Submit Tool Outputs](https://developers.openai.com/docs/api-reference/runs/submitToolOutputs)

Details

1# Beta Responses streaming events1# Beta Responses streaming events

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3When you [create a Response](https://developers.openai.com/docs/api-reference/responses/create) with5When you [create a Response](https://developers.openai.com/docs/api-reference/responses/create) with

4`stream` set to `true`, the server will emit server-sent events to the6`stream` set to `true`, the server will emit server-sent events to the

5client as the Response is generated. This section contains the events that7client as the Response is generated. This section contains the events that

Details

1# WebSocket events1# WebSocket events

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3Send client events and receive server events over a persistent Responses API WebSocket connection. [Learn more about WebSocket mode.](https://developers.openai.com/api/docs/guides/websocket-mode)5Send client events and receive server events over a persistent Responses API WebSocket connection. [Learn more about WebSocket mode.](https://developers.openai.com/api/docs/guides/websocket-mode)

4 6 

5## Client events7## Client events

Details

1# Chat Completions streaming events1# Chat Completions streaming events

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3Stream Chat Completions in real time. Receive chunks of completions5Stream Chat Completions in real time. Receive chunks of completions

4returned from the model using server-sent events.6returned from the model using server-sent events.

5[Learn more](https://developers.openai.com/docs/guides/streaming-responses?api-mode=chat).7[Learn more](https://developers.openai.com/docs/guides/streaming-responses?api-mode=chat).

Details

1# Image edit streaming events1# Image edit streaming events

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3Stream image generation and editing in real time with server-sent events.5Stream image generation and editing in real time with server-sent events.

4[Learn more about image streaming](https://developers.openai.com/docs/guides/image-generation).6[Learn more about image streaming](https://developers.openai.com/docs/guides/image-generation).

5 7 

Details

1# Image generation streaming events1# Image generation streaming events

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3Stream image generation and editing in real time with server-sent events.5Stream image generation and editing in real time with server-sent events.

4[Learn more about image streaming](https://developers.openai.com/docs/guides/image-generation).6[Learn more about image streaming](https://developers.openai.com/docs/guides/image-generation).

5 7 

Details

1# Organization1# Organization

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization

Details

1# Organization Audit Logs1# Organization Audit Logs

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/audit_logs7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/audit_logs

Details

1# Organization Audit Logs — List1# Organization Audit Logs — List

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/audit_logs/methods/list7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/audit_logs/methods/list

Details

1# Organization Audit Logs Admin Api Keys1# Organization Audit Logs Admin Api Keys

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/audit_logs/subresources/admin_api_keys7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/audit_logs/subresources/admin_api_keys

Details

1# Organization Audit Logs Admin Api Keys — Create1# Organization Audit Logs Admin Api Keys — Create

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/audit_logs/subresources/admin_api_keys/methods/create7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/audit_logs/subresources/admin_api_keys/methods/create

Details

1# Organization Audit Logs Admin Api Keys — Delete1# Organization Audit Logs Admin Api Keys — Delete

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/audit_logs/subresources/admin_api_keys/methods/delete7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/audit_logs/subresources/admin_api_keys/methods/delete

Details

1# Organization Audit Logs Admin Api Keys — List1# Organization Audit Logs Admin Api Keys — List

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/audit_logs/subresources/admin_api_keys/methods/list7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/audit_logs/subresources/admin_api_keys/methods/list

Details

1# Organization Audit Logs Admin Api Keys — Retrieve1# Organization Audit Logs Admin Api Keys — Retrieve

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/audit_logs/subresources/admin_api_keys/methods/retrieve7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/audit_logs/subresources/admin_api_keys/methods/retrieve

Details

1# Organization Audit Logs Usage1# Organization Audit Logs Usage

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/audit_logs/subresources/usage7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/audit_logs/subresources/usage

Details

1# Organization Groups1# Organization Groups

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups

Details

1# Organization Groups — Create1# Organization Groups — Create

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups/methods/create7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups/methods/create

Details

1# Organization Groups — Delete1# Organization Groups — Delete

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups/methods/delete7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups/methods/delete

Details

1# Organization Groups — List1# Organization Groups — List

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups/methods/list7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups/methods/list

Details

1# Organization Groups — Update1# Organization Groups — Update

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups/methods/update7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups/methods/update

Details

1# Organization Groups Users1# Organization Groups Users

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups/subresources/users7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups/subresources/users

Details

1# Organization Groups Users — Create1# Organization Groups Users — Create

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups/subresources/users/methods/create7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups/subresources/users/methods/create

Details

1# Organization Groups Users — Delete1# Organization Groups Users — Delete

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups/subresources/users/methods/delete7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups/subresources/users/methods/delete

Details

1# Organization Groups Users — List1# Organization Groups Users — List

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups/subresources/users/methods/list7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/groups/subresources/users/methods/list

Details

1# Organization Invites1# Organization Invites

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/invites7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/invites

Details

1# Organization Invites — Create1# Organization Invites — Create

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/invites/methods/create7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/invites/methods/create

Details

1# Organization Invites — Delete1# Organization Invites — Delete

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/invites/methods/delete7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/invites/methods/delete

Details

1# Organization Invites — List1# Organization Invites — List

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/invites/methods/list7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/invites/methods/list

Details

1# Organization Invites — Retrieve1# Organization Invites — Retrieve

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/invites/methods/retrieve7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/invites/methods/retrieve

Details

1# Organization Projects1# Organization Projects

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects

Details

1# Organization Projects — Create1# Organization Projects — Create

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/methods/create7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/methods/create

Details

1# Organization Projects — List1# Organization Projects — List

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/methods/list7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/methods/list

Details

1# Organization Projects — Retrieve1# Organization Projects — Retrieve

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/methods/retrieve7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/methods/retrieve

Details

1# Organization Projects — Update1# Organization Projects — Update

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/methods/update7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/methods/update

Details

1# Organization Projects Api Keys1# Organization Projects Api Keys

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/api_keys7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/api_keys

Details

1# Organization Projects Api Keys — Delete1# Organization Projects Api Keys — Delete

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/api_keys/methods/delete7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/api_keys/methods/delete

Details

1# Organization Projects Api Keys — List1# Organization Projects Api Keys — List

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/api_keys/methods/list7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/api_keys/methods/list

Details

1# Organization Projects Api Keys — Retrieve1# Organization Projects Api Keys — Retrieve

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/api_keys/methods/retrieve7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/api_keys/methods/retrieve

Details

1# Organization Projects Groups1# Organization Projects Groups

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/groups7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/groups

Details

1# Organization Projects Groups — Delete1# Organization Projects Groups — Delete

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/groups/methods/delete7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/groups/methods/delete

Details

1# Organization Projects Groups — List1# Organization Projects Groups — List

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/groups/methods/list7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/groups/methods/list

Details

1# Organization Projects Rate Limits1# Organization Projects Rate Limits

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/rate_limits7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/rate_limits

Details

1# Organization Projects Service Accounts1# Organization Projects Service Accounts

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/service_accounts7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/service_accounts

Details

1# Organization Projects Service Accounts — Create1# Organization Projects Service Accounts — Create

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/service_accounts/methods/create7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/service_accounts/methods/create

Details

1# Organization Projects Service Accounts — Delete1# Organization Projects Service Accounts — Delete

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/service_accounts/methods/delete7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/service_accounts/methods/delete

Details

1# Organization Projects Service Accounts — List1# Organization Projects Service Accounts — List

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/service_accounts/methods/list7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/service_accounts/methods/list

Details

1# Organization Projects Service Accounts — Retrieve1# Organization Projects Service Accounts — Retrieve

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/service_accounts/methods/retrieve7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/service_accounts/methods/retrieve

Details

1# Organization Projects Users1# Organization Projects Users

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/users7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/users

Details

1# Organization Projects Users — Create1# Organization Projects Users — Create

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/users/methods/create7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/users/methods/create

Details

1# Organization Projects Users — Delete1# Organization Projects Users — Delete

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/users/methods/delete7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/users/methods/delete

Details

1# Organization Projects Users — List1# Organization Projects Users — List

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/users/methods/list7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/users/methods/list

Details

1# Organization Projects Users — Retrieve1# Organization Projects Users — Retrieve

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/users/methods/retrieve7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/users/methods/retrieve

Details

1# Organization Projects Users — Update1# Organization Projects Users — Update

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/users/methods/update7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/projects/subresources/users/methods/update

Details

1# Organization Roles1# Organization Roles

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/roles7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/roles

Details

1# Organization Roles — Create1# Organization Roles — Create

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/roles/methods/create7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/roles/methods/create

Details

1# Organization Roles — Delete1# Organization Roles — Delete

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/roles/methods/delete7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/roles/methods/delete

Details

1# Organization Roles — List1# Organization Roles — List

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/roles/methods/list7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/roles/methods/list

Details

1# Organization Roles — Update1# Organization Roles — Update

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/roles/methods/update7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/roles/methods/update

Details

1# Organization Users1# Organization Users

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/users7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/users

Details

1# Organization Users — Delete1# Organization Users — Delete

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/users/methods/delete7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/users/methods/delete

Details

1# Organization Users — List1# Organization Users — List

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/users/methods/list7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/users/methods/list

Details

1# Organization Users — Retrieve1# Organization Users — Retrieve

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/users/methods/retrieve7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/users/methods/retrieve

Details

1# Organization Users — Update1# Organization Users — Update

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/users/methods/update7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/users/methods/update

Details

1# Organization Users Roles — Create1# Organization Users Roles — Create

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/users/subresources/roles/methods/create7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/users/subresources/roles/methods/create

Details

1# Organization Users Roles — Delete1# Organization Users Roles — Delete

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/users/subresources/roles/methods/delete7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/users/subresources/roles/methods/delete

Details

1# Organization Users Roles — List1# Organization Users Roles — List

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/users/subresources/roles/methods/list7Canonical reference URL: https://developers.openai.com/api/reference/resources/organization/subresources/users/subresources/roles/methods/list

Details

1# Projects1# Projects

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/projects7Canonical reference URL: https://developers.openai.com/api/reference/resources/projects

Details

1# Projects Groups1# Projects Groups

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/groups7Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/groups

Details

1# Projects Groups Roles — Create1# Projects Groups Roles — Create

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/groups/subresources/roles/methods/create7Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/groups/subresources/roles/methods/create

Details

1# Projects Groups Roles — Delete1# Projects Groups Roles — Delete

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/groups/subresources/roles/methods/delete7Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/groups/subresources/roles/methods/delete

Details

1# Projects Groups Roles — List1# Projects Groups Roles — List

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/groups/subresources/roles/methods/list7Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/groups/subresources/roles/methods/list

Details

1# Projects Roles — Create1# Projects Roles — Create

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/roles/methods/create7Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/roles/methods/create

Details

1# Projects Roles — Delete1# Projects Roles — Delete

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/roles/methods/delete7Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/roles/methods/delete

Details

1# Projects Roles — List1# Projects Roles — List

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/roles/methods/list7Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/roles/methods/list

Details

1# Projects Roles — Update1# Projects Roles — Update

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/roles/methods/update7Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/roles/methods/update

Details

1# Projects Users1# Projects Users

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint reference.5OpenAI API endpoint reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/users7Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/users

Details

1# Projects Users Roles — Create1# Projects Users Roles — Create

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/users/subresources/roles/methods/create7Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/users/subresources/roles/methods/create

Details

1# Projects Users Roles — Delete1# Projects Users Roles — Delete

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/users/subresources/roles/methods/delete7Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/users/subresources/roles/methods/delete

Details

1# Projects Users Roles — List1# Projects Users Roles — List

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI API endpoint method reference.5OpenAI API endpoint method reference.

4 6 

5Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/users/subresources/roles/methods/list7Canonical reference URL: https://developers.openai.com/api/reference/resources/projects/subresources/users/subresources/roles/methods/list

Details

1# Realtime client events1# Realtime client events

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3These are events that the OpenAI Realtime WebSocket server will accept from the client.5These are events that the OpenAI Realtime WebSocket server will accept from the client.

4 6 

5## session.update7## session.update

Details

1# Realtime server events1# Realtime server events

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3These are events emitted from the OpenAI Realtime WebSocket server to the client.5These are events emitted from the OpenAI Realtime WebSocket server to the client.

4 6 

5## conversation.created7## conversation.created

Details

1# Realtime translation client events1# Realtime translation client events

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3These are events that the OpenAI Realtime Translation WebSocket server will accept from the client.5These are events that the OpenAI Realtime Translation WebSocket server will accept from the client.

4 6 

5## session.update7## session.update

Details

1# Realtime translation server events1# Realtime translation server events

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3These are events emitted from the OpenAI Realtime Translation WebSocket server to the client.5These are events emitted from the OpenAI Realtime Translation WebSocket server to the client.

4 6 

5## error7## error

Details

1# Responses streaming events1# Responses streaming events

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3When you [create a Response](https://developers.openai.com/docs/api-reference/responses/create) with5When you [create a Response](https://developers.openai.com/docs/api-reference/responses/create) with

4`stream` set to `true`, the server will emit server-sent events to the6`stream` set to `true`, the server will emit server-sent events to the

5client as the Response is generated. This section contains the events that7client as the Response is generated. This section contains the events that

Details

1# WebSocket events1# WebSocket events

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3Send client events and receive server events over a persistent Responses API WebSocket connection. [Learn more about WebSocket mode.](https://developers.openai.com/api/docs/guides/websocket-mode)5Send client events and receive server events over a persistent Responses API WebSocket connection. [Learn more about WebSocket mode.](https://developers.openai.com/api/docs/guides/websocket-mode)

4 6 

5## Client events7## Client events

Details

1# Responses Overview1# Responses Overview

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3OpenAI's most advanced interface for generating model responses. Supports5OpenAI's most advanced interface for generating model responses. Supports

4text and image inputs, and text outputs. Create stateful interactions6text and image inputs, and text outputs. Create stateful interactions

5with the model, using the output of previous responses as input. Extend7with the model, using the output of previous responses as input. Extend

ruby/index.md +1 −1

Details

15<!-- x-release-please-start-version -->15<!-- x-release-please-start-version -->

16 16 

17```ruby17```ruby

18gem "openai", "~> 0.72.0"18gem "openai", "~> 0.73.0"

19```19```

20 20 

21<!-- x-release-please-end -->21<!-- x-release-please-end -->

Details

791 791 

792The following runtimes are supported:792The following runtimes are supported:

793 793 

794- Node.js 20 LTS or later ([non-EOL](https://endoflife.date/nodejs)) versions.794- Node.js 22 and 24 LTS. Node.js 22 is the minimum supported version.

795- Deno v1.28.0 or higher.795- Deno v1.28.0 or higher.

796- Bun 1.0 or later.796- Bun 1.0 or later.

797- Cloudflare Workers.797- Cloudflare Workers.


821 821 

822If you are interested in other runtime environments, please open or upvote an issue on GitHub.822If you are interested in other runtime environments, please open or upvote an issue on GitHub.

823 823 

824Node.js 20 reached end of life on April 30, 2026 and is no longer supported.

825Previously published SDK releases remain available, but receive no guaranteed

826fixes or security backports for unsupported Node.js versions. See the

827[Node.js version support policy](https://github.com/openai/openai-node/blob/main/NODE_VERSION_POLICY.md)

828for lifecycle, deprecation, and release rules.

829 

824## Contributing830## Contributing

825 831 

826See [the contributing documentation](./CONTRIBUTING.md).832See [the contributing documentation](./CONTRIBUTING.md).

Details

1# Workload identity token exchange1# Workload identity token exchange

2 2 

3> For the complete documentation index, see [llms.txt](/llms.txt). Markdown versions of documentation pages are available by appending `.md` to the page URL.

4 

3Use this reference to exchange an externally issued identity token for a short-lived OpenAI access token after you configure a trusted provider and service account mapping. For concepts, dashboard configuration, provider-specific setup, and SDK examples, see the [workload identity federation guide](https://developers.openai.com/api/docs/guides/workload-identity-federation).5Use this reference to exchange an externally issued identity token for a short-lived OpenAI access token after you configure a trusted provider and service account mapping. For concepts, dashboard configuration, provider-specific setup, and SDK examples, see the [workload identity federation guide](https://developers.openai.com/api/docs/guides/workload-identity-federation).

4 6 

5## Exchange a subject token7## Exchange a subject token