Organization keys
An organization key belongs to the whole organization. It has no individual owner; it carries the organization’s identity on every request, and nothing about a particular person.- Admin-only. Only an org admin can create or revoke organization keys.
- Shared across admins. Organization keys are listed and revoked by organization, not by creator. Every admin sees every organization key and can revoke any of them. There is no “this is my key”; they are shared infrastructure for the org.
- No user attribution. Requests made with an organization key are attributed to the organization, not to the admin who created the key. The key record does not track which admin created it.
- Reaches non-access-controlled resources only. An organization key sees org-wide resources: it searches files that are not access-controlled and lists projects that are not access-controlled. It cannot reach files or projects shared privately with specific members. A personal key, by contrast, sees everything its owner can read. If an integration needs privately shared files or projects, use a personal key belonging to a member who has access.
- A few endpoints require a personal key. Endpoints that resolve “what this user can access” reject organization keys because there is no individual to scope to.
GET /chat/searchreturns400for an organization key — chat search is inherently per-user. The user-scopedscopefilter on the files and folders endpoints likewise requires a personal key. Use a personal key for these.

Personal keys
A personal key belongs to one member. Every request made with it carries that member’s identity (their user ID and email), so activity is attributable to a person.- Gated by an org policy. Personal keys can only be created when an admin has turned on User API Keys Policy for the organization (see Enabling personal keys). The policy is off by default.
- Self-service, self-owned. Once the policy is on, any member can create their own personal keys from Settings → API. Each member sees and revokes only their own keys.
- User attribution. Because the request carries the member’s identity, a personal key is the right choice when you want actions traced back to an individual.
Scopes at a glance
Both scopes bill usage to the organization. The difference is about attribution and control, not cost.
Enabling personal keys
Personal keys are off until an admin opts the organization in. An admin enables them under Settings → API:
- It is all-or-nothing for the organization. The toggle is a single organization-wide setting. When it is on, every member may create personal keys; when it is off, none may.
- It gates admins too. There is no admin exception. An admin who wants a personal key for themselves must first turn the policy on for the whole organization, which turns it on for everyone. (If you want a company-owned key without enabling personal keys org-wide, use an organization key instead.)
- Turning it off does not revoke existing keys. Disabling the policy stops new personal keys from being created. Keys that already exist keep working until they are revoked.

Current limitations
A few governance behaviors are worth planning around:- Personal-key revocation is self-service only. A member can revoke their own keys, but an admin cannot revoke another member’s personal key from the settings UI.
- Organization keys have no per-admin attribution. The system records that an organization key exists, but not which admin created it. Track ownership and purpose out of band (for example, a note in your secret manager) if you need it.
- The personal-key policy has no per-member granularity. You cannot enable personal keys for some members but not others; it is a single org-wide switch.
Choosing a scope
- Company-owned integration, shared service, scheduled job → organization key. Any admin can rotate it, and it outlives individuals. Note that an organization key only reaches non-access-controlled resources, and a few per-user endpoints (chat search, the
scopefilter on files/folders) reject organization keys; if your integration needs privately shared files or projects, or any of those endpoints, use a personal key instead. - An individual scripting against their own access, where you want activity attributed to them → personal key (after an admin enables the org policy).
Related
- How to enable API access: step-by-step setup for the personal-key path (enabling the org policy and creating a personal key). For an organization key, an admin creates one directly under Settings → API → Organization API Keys — see Organization keys above.
- API Introduction: base URL, authentication header, and a quick-start request.