OpenAI node
An OpenAI node lets your flow call OpenAI Admin API operations — for example, listing organization admin API keys, users, or projects. These actions use an OpenAI Admin API connection, not the OpenAI billing integration.
OpenAI Admin API actions are available under early preview. To request access, submit a support request.
Before you begin
Create an OpenAI Admin API connection and make sure your DoiT account can use it in CloudFlow.
Find an action
-
In the flow editor, select the plus icon (+) and choose OpenAI.
-
Search or browse for an Admin API operation. Action labels use the operation ID (for example,
admin-api-keys-list).

Example: List organization admin API keys
This example adds an OpenAI node that lists organization admin API keys. The operation is read-only and works with a valid Admin API connection.
-
Add an OpenAI node and select
admin-api-keys-list(List organization API keys). -
On the Connection tab, select your OpenAI Admin API connection.
-
On the Parameters tab, optionally set:
-
limit: Maximum number of keys to return (default
20). -
order:
ascordescby creation time. -
after: A key ID to continue pagination after that ID.
-
-
Select Test to run the action. The result includes a
dataarray of admin API keys that downstream nodes can reference.
You can chain this node with a Filter, Transform, or Notification node — for example, to alert when keys have not been used recently. The Audit AI API keys tutorial builds a complete flow around this action.