

# Viewing details of the root with Amazon Organizations
<a name="orgs_view_root"></a>

When you sign in to the organization's management account in the [Amazon Organizations console](https://console.amazonaws.cn/organizations/v2), you can view details of the administrative root.

**Minimum permissions**  
To view the details of root, you must have the following permissions:  
`organizations:DescribeOrganization` (console only)
`organizations:ListRoots` 

The root is the topmost container in the hierarchy of organizational units (OUs) and generally behaves as an OU. However, as the container at the very top of the hierarchy, changes to the root affect every other OU and every Amazon Web Services account in the organization.

------
#### [ Amazon Web Services Management Console ]<a name="view_details_root_v2"></a>

**To view the details of the root**

1. Sign in to the [Amazon Organizations console](https://console.amazonaws.cn/organizations/v2). You must sign in as an IAM user, assume an IAM role, or sign in as the root user ([not recommended](https://docs.amazonaws.cn/IAM/latest/UserGuide/best-practices.html#lock-away-credentials)) in the organization’s management account.

1. Navigate to the **[Amazon Web Services accounts](https://console.amazonaws.cn/organizations/v2/home/accounts)** page, and choose the **Root** OU (its name, not the radio button). 

1. The **Root** details page appears and displays the details of the root.

------
#### [ Amazon CLI & Amazon SDKs ]

**To view the details of the root**  
You can use one of the following commands to view details of a root: 
+ Amazon CLI: [list-roots](https://docs.amazonaws.cn/cli/latest/reference/organizations/list-roots.html) 

  The following example shows how to retrieve the details of the root, including which policy types are currently enabled in the organization:

  ```
  $ aws organizations list-roots
  {
      "Roots": [
          {
              "Id": "r-a1b2",
              "Arn": "arn:aws-cn:organizations::123456789012:root/o-aa111bb222/r-a1b2",
              "Name": "Root",
              "PolicyTypes": [
                  {
                      "Type": "BACKUP_POLICY",
                      "Status": "ENABLED"
                  }
              ]
          }
      ]
  }
  ```
+ Amazon SDKs: [ListRoots](https://docs.amazonaws.cn/organizations/latest/APIReference/API_ListRoots.html)

------