

# Viewing details of an organization from the management account
<a name="orgs_view_org"></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 organization.

**Minimum permissions**  
To view the details of an organization, you must have the following permission:  
`organizations:DescribeOrganization`

------
#### [ Amazon Web Services Management Console ]

**To view the details for your organization**

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 **[Settings](https://console.amazonaws.cn/organizations/v2/home/settings)** page. This page displays details about the organization, including the organization ID and the account name and email address assigned to the organization's management account.

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

**To view the details for your organization**  
You can use one of the following commands to view details of an organization:
+ Amazon CLI: [describe-organization](https://docs.amazonaws.cn/cli/latest/reference/organizations/describe-organization.html) 

  The following example shows the information included in the output of this command.

  ```
  $ aws organizations describe-organization
  {
      "Organization": {
          "Id": "o-aa111bb222",
          "Arn": "arn:aws-cn:organizations::123456789012:organization/o-aa111bb222",
          "FeatureSet": "ALL",
          "MasterAccountArn": "arn:aws-cn:organizations::128716708097:account/o-aa111bb222/123456789012",
          "MasterAccountId": "123456789012",
          "MasterAccountEmail": "admin@example.com",
          "AvailablePolicyTypes": [ ...DEPRECATED - DO NOT USE... ]
      }
  }
  ```
**Important**  
The `AvailablePolicyTypes` field is deprecated and doesn't contain accurate information about the policies enabled in your organization. To see the accurate and complete list of policy types that are actually enabled for the organization, use the `ListRoots` command, as described in the Amazon CLI portion of the following section.
+ Amazon SDKs: [DescribeOrganization](https://docs.amazonaws.cn/organizations/latest/APIReference/API_DescribeOrganization.html)

------