Viewing and managing organization resources

This page explains how to view and manage billing accounts and projects under anorganization resource.

Viewing billing accounts under the organization resource

You can view the existing billing accounts under an organization resource usingthe Google Cloud console.

Console

  1. Open the Google Cloud console:

    Open the Billing page

  2. Click on theOrganization drop-down on top of the page, and select yourorganization resource.

All billing accounts for the organization resource are listed on the page.

Creating a new project in the organization resource

Console

You can create a project in the organization resource using theGoogle Cloud console after the organization resource is enabled for yourdomain.

To create a new project in the organization resource:

To create a new project, do the following:

  1. Go to theManage resources page in the Google Cloud console.

    Go to Manage Resources

    The remaining steps appear in the Google Cloud console.

  2. On theSelect 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.
  3. ClickCreate Project.
  4. In theNew 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.
  5. Enter the parent organization or folder resource in theLocation box. That resource will be the hierarchical parent of the new project. IfNo organization is an option, you can select it to create your new project as the top level of its own resource hierarchy.
  6. When you're finished entering new project details, clickCreate.

API

You can create a new project in the organization resource bycreating aprojectand setting itsparent field to theorganizationId of the organization resource.

The following code snippet demonstrates how to create a project in anorganization resource:

project=crm.projects().create(body={'project_id':flags.projectId,'name':'MyNewProject','parent':{'type':'organization','id':flags.organizationId}}).execute()

Viewing all projects in an organization resource

Console

To view all projects under an organization resource using the Google Cloud console:

  1. Go to the Google Cloud console:

    Go to Google Cloud console

  2. From the project picker at the top of the page, select your organizationresource.

  3. TheRecent tab will show recently accessed projects and folders.Click theAll tab to view all projects and folders.

Note: Up to 4000 resources can be displayed in the project picker. If youdo not see a resource that should appear, go to theManage resourcespage and filter the list using the name of that resource.

TheNo organization option in theOrganization drop-down lists thefollowing projects:

  • Projects that do not belong to the organization resource yet.
  • Projects for which the user has access to, but are under an organizationresource to which the user does not have access.

gcloud

To view all projects directly under the organization resource, run thefollowing command:

gcloudprojectslist--filter 'parent.id=[ORGANIZATION_ID] AND \parent.type=organization'

This command does not show every project in your hierarchy, only theprojects that are directly under your organization resource. To list everyresource in your hierarchy, seeListing all Resources in your Hierarchy.

API

Use theprojects.list()method to list all the projects directly under the organization resource, asshown in the following code snippet:

filter='parent.type:organizationparent.id:%s'%flags.organizationIdprojects=crm.projects().list(filter=filter).execute()

This method does not show every project in your hierarchy, only the projectsthat are directly under your organization resource. To list every resourcein your hierarchy, seeListing 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:

  1. Go to theProjects page in theIAM & Admin section:

    Open the Projects page

  2. Click on theOrganization drop-down on top of the page.
  3. Select your organization resource. All projects in the organizationresource are listed on the page.
  4. In the list of projects, select the project you wish to delete, and clickDelete Project.
  5. Enter the project ID and clickShut 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 recommendrestoring the organization resource's Identity and Access Management (IAM) allow policy tothe original state using the following steps:

  1. Add your domain to theProject Creator andBilling Account Creator roles.
  2. Remove all other entries in the organization resource's allow policy.

This will allow your users to continue to create projects and billing accountswhile allowing the Google Workspace Super Admin to recover centraladministration later, if desired.

If in fact you wish to delete your organization resource andall the resourcesassociated with it,delete yourGoogle Workspace account.

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-12-17 UTC.