Skip to content
Primary navigation

Create admin API key

$ openai admin:organization:admin-api-keys create
POST/organization/admin_api_keys

Create an organization admin API key

ParametersExpand Collapse
--name: string
ReturnsExpand Collapse
AdminOrganizationAdminAPIKeyNewResponse: AdminAPIKey { id, created_at, object, 4 more }

Represents an individual Admin API key in an org.

value: string

The value of the API key. Only shown on create.

Create admin API key

openai admin:organization:admin-api-keys create \
  --admin-api-key 'My Admin API Key' \
  --name 'New Admin Key'
{
  "object": "organization.admin_api_key",
  "id": "key_xyz",
  "name": "New Admin Key",
  "redacted_value": "sk-admin...xyz",
  "created_at": 1711471533,
  "last_used_at": 1711471534,
  "owner": {
    "type": "user",
    "object": "organization.user",
    "id": "user_123",
    "name": "John Doe",
    "created_at": 1711471533,
    "role": "owner"
  },
  "value": "sk-admin-1234abcd"
}
Returns Examples
{
  "object": "organization.admin_api_key",
  "id": "key_xyz",
  "name": "New Admin Key",
  "redacted_value": "sk-admin...xyz",
  "created_at": 1711471533,
  "last_used_at": 1711471534,
  "owner": {
    "type": "user",
    "object": "organization.user",
    "id": "user_123",
    "name": "John Doe",
    "created_at": 1711471533,
    "role": "owner"
  },
  "value": "sk-admin-1234abcd"
}