Transfer projects to an organization
When creating an organization as an Admin — or as a member of an organization that's already up and running — you may need to transfer existing projects from your personal account to your target organization.
Guidelines
The Neon Console allows you to transfer projects up to 200 projects at a time, while the API supports up to 400 projects in a single operation. If you need to transfer more than 200 projects, our Python script can help you efficiently manage this one-time​ task.
A few important points to keep in mind:
- You must be at least a Member of the selected Organization to transfer projects to it.
- The number of projects you can transfer is limited by the target Organization plan's allowance.
- Projects can't be transferred between incompatible plans due to differences in usage allowances. For example, attempting to transfer projects from a Scale plan personal account to a Launch plan Organization will result in an error.
Transfer from the Neon Console
You can transfer individual projects by selecting each project to transfer from your personal account, or you can transfer in bulk by starting from the destination Organization.
Transfer a single project
Make sure you're in your personal account. Find the project you want to transfer, then start the Transfer from under projects settings.
Transfer projects in bulk
Navigate to the Organization you want to import projects into. In the Billing section, find Transfer projects in the list of "Get Started with your paid plan" actions. From this action, you can choose the projects you want to transfer — either all of them or a selection. The list of available projects is taken from existing projects in your personal account.
Transfer projects via API
Use the Project Transfer API to transfer projects from your personal Neon account to a specified organization account.
POST /users/me/projects/transfer
The API call requires both the organization ID and the project IDs that you want to transfer. Below is an example using the API in a cURL command.
Example responses
Here's the response after a successful transfer:
And here's a sample response showing incompatible subscription types:
Transfer large numbers of projects
When your number of projects exceeds the Console transfer limit of 200 (or the API transfer limit of 400), you can use the following Python script to transfer projects in batches.
How to use the script
- Replace placeholders: Update the script with your actual API key and organization ID.
- Your API key belongs to your Personal Account. See API actions to learn more.
- To find your organization ID, see Finding your org_id.
- Run the script: Execute the script locally to transfer projects.
The script will efficiently handle large project transfers by splitting them into manageable batches of 400 projects at a time.