diff --git a/content/docs/manage/api-keys.md b/content/docs/manage/api-keys.md index 7beeea9133..f3e87f1e4b 100644 --- a/content/docs/manage/api-keys.md +++ b/content/docs/manage/api-keys.md @@ -17,7 +17,7 @@ Neon supports three types of API keys: | ---------------------- | --------------------------- | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------ | | Personal API Key | Any user | User's personal projects and any organization projects where they are a member | Valid until revoked; org project access ends if user leaves organization | | Organization API Key | Organization administrators | All projects within the organization | Valid until revoked | -| Project-scoped API Key | Organization members | Single specified project | Valid until revoked or project leaves organization | +| Project-scoped API Key | Any organization member | Single specified project | Valid until revoked or project leaves organization | While there is no strict limit on the number of API keys you can create, we recommend keeping it under 10,000 per Neon account. @@ -116,11 +116,11 @@ curl --request POST \ Project-scoped API keys have [member-level access](/docs/manage/organizations#user-roles-and-permissions), meaning they **cannot** delete the project they are associated with. These keys: -- Can only access and manage their specified project +- Can only access and manage the specified project - Cannot perform organization-related actions or create new projects - Will stop working if the project is transferred out of the organization -Any project member can create an API key for their project using the following command: +Any organization member can create an API key for any organization-owned project using the following command: ```bash shouldWrap curl --request POST \ diff --git a/content/docs/manage/orgs-api.md b/content/docs/manage/orgs-api.md index af99a43a83..7035c98734 100644 --- a/content/docs/manage/orgs-api.md +++ b/content/docs/manage/orgs-api.md @@ -61,7 +61,7 @@ To find your organization's `org_id`, navigate to your Organization's **Settings There are two types of organization API keys: - **Organization API keys** — Provide admin-level access to all organization resources, including projects, members, and settings. Only organization admins can create these keys. -- **Project-scoped organization API keys** — Provide limited, member-level access to specific projects within the organization. Any member of a project can create a key for that project. +- **Project-scoped organization API keys** — Provide limited, member-level access to specific projects within the organization. Any organization member can create a key for any organization-owned project. The key token is only displayed once at creation time. Copy it immediately and store it securely. If lost, you’ll need to revoke the key and create a new one. For detailed instructions, see [Manage API Keys](/docs/manage/api-keys#create-an-organization-api-key).