The remaining steps appear in the Google Cloud console.
On the Select organization drop-down list at the top of the page, select the
organization resource in which you want to create a project. If you are a free trial user, skip this
step, as this list does not appear.
Click Create Project.
In the New Project window that appears, enter a project name and select a
billing account as applicable. A project name can contain only letters, numbers, single
quotes, hyphens, spaces, or exclamation points, and must be between 4 and 30 characters.
Enter the parent organization or folder resource in the Location box. That resource
will be the hierarchical parent of the new project. If No organization is an option,
you can select it to create your new project as the top level of its own resource hierarchy.
When you're finished entering new project details, click Create.
API
You can create a new project in the organization resource by
creating a project
and setting its parent field to the organizationId of the organization resource.
The following code snippet demonstrates how to create a project in an
organization resource:
From the project picker at the top of the page, select your organization
resource.
The Recent tab will show recently accessed projects and folders.
Click the All tab to view all projects and folders.
The No organization option in the Organization drop-down lists the
following projects:
Projects that do not belong to the organization resource yet.
Projects for which the user has access to, but are under an organization
resource to which the user does not have access.
gcloud
To view all projects directly under the organization resource, run the
following command:
gcloudprojectslist--filter 'parent.id=[ORGANIZATION_ID] AND \parent.type=organization'
This command does not show every project in your hierarchy, only the
projects that are directly under your organization resource. To list every
resource in your hierarchy, see
Listing all Resources in your Hierarchy.
API
Use the
projects.list()
method to list all the projects directly under the organization resource, as
shown in the following code snippet:
This method does not show every project in your hierarchy, only the projects
that are directly under your organization resource. To list every resource
in your hierarchy, see
Listing all Resources in your Hierarchy.
Deleting projects in an organization resource
You can delete a project from an organization resource.
Console
To delete a project using the Google Cloud console:
Go to the Projects page in the IAM & Admin section:
Click on the Organization drop-down on top of the page.
Select your organization resource. All projects in the organization
resource are listed on the page.
In the list of projects, select the project you wish to delete, and click
Delete Project.
Enter the project ID and click Shut down.
Deleting an organization resource
The organization resource is bound to your Google Workspace (formerly G Suite)
account.
If you would simply prefer not to use the organization resource, we recommend
restoring the organization resource's Identity and Access Management (IAM) allow policy to
the original state using the following steps:
Add your domain to the Project Creator and Billing Account Creator roles.
Remove all other entries in the organization resource's allow policy.
This will allow your users to continue to create projects and billing accounts
while allowing the Google Workspace Super Admin to recover central
administration later, if desired.
If in fact you wish to delete your organization resource and all the resources
associated with it,delete your
Google Workspace account.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-28 UTC."],[],[],null,["# Viewing and managing organization resources\n\nThis page explains how to view and manage billing accounts and projects under an\norganization resource.\n\nViewing billing accounts under the organization resource\n--------------------------------------------------------\n\nYou can view the existing billing accounts under an organization resource using\nthe Google Cloud console. \n\n### Console\n\n1. Open the Google Cloud console:\n\n [Open the Billing page](https://console.cloud.google.com/billing)\n\n \u003cbr /\u003e\n\n2. Click on the **Organization** drop-down on top of the page, and select your\n organization resource.\n\nAll billing accounts for the organization resource are listed on the page.\n\nCreating a new project in the organization resource\n---------------------------------------------------\n\n### Console\n\nYou can create a project in the organization resource using the\nGoogle Cloud console after the organization resource is enabled for your\ndomain.\n\nTo create a new project in the organization resource:\n\nTo create a new project, do the following:\n\n1. Go to the **Manage resources** page in the Google Cloud console.\n\n [Go to Manage Resources](https://console.cloud.google.com/cloud-resource-manager?walkthrough_id=resource-manager--create-project&start_index=1#step_index=1)\n\n The remaining steps appear in the Google Cloud console.\n2. On the **Select organization** drop-down list at the top of the page, select the organization resource in which you want to create a project. If you are a free trial user, skip this step, as this list does not appear.\n3. Click **Create Project**.\n4. In the **New Project** window that appears, enter a project name and select a billing account as applicable. A project name can contain only letters, numbers, single quotes, hyphens, spaces, or exclamation points, and must be between 4 and 30 characters.\n5. Enter the parent organization or folder resource in the **Location** box. That resource will be the hierarchical parent of the new project. If **No organization** is an option, you can select it to create your new project as the top level of its own resource hierarchy.\n6. When you're finished entering new project details, click **Create**.\n\n### API\n\nYou can create a new project in the organization resource by\n[creating](/resource-manager/reference/rest/v3/projects/create) a `project`\nand setting its `parent` field to the `organizationId` of the organization resource.\n\nThe following code snippet demonstrates how to create a project in an\norganization resource: \n\n project = crm.projects().create(\n body={\n 'project_id': flags.projectId,\n 'name': 'My New Project',\n 'parent': {\n 'type': 'organization',\n 'id': flags.organizationId\n }\n }).execute()\n\nViewing all projects in an organization resource\n------------------------------------------------\n\n### Console\n\nTo view all projects under an organization resource using the Google Cloud console:\n\n1. Go to the Google Cloud console:\n\n [Go to Google Cloud console](https://console.cloud.google.com/)\n\n \u003cbr /\u003e\n\n2. From the project picker at the top of the page, select your organization\n resource.\n\n3. The **Recent** tab will show recently accessed projects and folders.\n Click the **All** tab to view all projects and folders.\n\n| **Note:** Up to 4000 resources can be displayed in the project picker. If you do not see a resource that should appear, go to the **Manage resources** page and filter the list using the name of that resource.\n\nThe **No organization** option in the **Organization** drop-down lists the\nfollowing projects:\n\n- Projects that do not belong to the organization resource yet.\n- Projects for which the user has access to, but are under an organization resource to which the user does not have access.\n\n### gcloud\n\nTo view all projects directly under the organization resource, run the\nfollowing command: \n\n gcloud projects list --filter 'parent.id=[ORGANIZATION_ID] AND \\\n parent.type=organization'\n\nThis command does not show every project in your hierarchy, only the\nprojects that are directly under your organization resource. To list every\nresource in your hierarchy, see\n[Listing all Resources in your Hierarchy](/resource-manager/docs/listing-all-resources).\n\n### API\n\nUse the\n[`projects.list()`](/resource-manager/reference/rest/v3/projects/list)\nmethod to list all the projects directly under the organization resource, as\nshown in the following code snippet: \n\n filter = 'parent.type:organization parent.id:%s' % flags.organizationId\n projects = crm.projects().list(filter=filter).execute()\n\nThis method does not show every project in your hierarchy, only the projects\nthat are directly under your organization resource. To list every resource\nin your hierarchy, see\n[Listing all Resources in your Hierarchy](/resource-manager/docs/listing-all-resources).\n\nDeleting projects in an organization resource\n---------------------------------------------\n\nYou can delete a project from an organization resource. \n\n### Console\n\nTo delete a project using the Google Cloud console:\n\n1. Go to the **Projects** page in the **IAM \\& Admin** section:\n\n [Open the Projects page](https://console.cloud.google.com/iam-admin/projects)\n2. Click on the **Organization** drop-down on top of the page.\n3. Select your organization resource. All projects in the organization resource are listed on the page.\n4. In the list of projects, select the project you wish to delete, and click **Delete Project**.\n5. Enter the project ID and click **Shut down**.\n\nDeleting an organization resource\n---------------------------------\n\nThe organization resource is bound to your Google Workspace (formerly G Suite)\naccount.\n\nIf you would simply prefer not to use the organization resource, we recommend\nrestoring the organization resource's Identity and Access Management (IAM) allow policy to\nthe original state using the following steps:\n\n1. Add your domain to the `Project Creator` and `Billing Account Creator` roles.\n2. Remove all other entries in the organization resource's allow policy.\n\nThis will allow your users to continue to create projects and billing accounts\nwhile allowing the Google Workspace Super Admin to recover central\nadministration later, if desired.\n\nIf in fact you wish to delete your organization resource and **all the resources\nassociated with it,**\n[delete](https://support.google.com/domains/answer/6313602?hl=en) your\nGoogle Workspace account."]]