1**To create an account**
2
3The following ``create-account`` example creates an Amazon Chime account under the administrator's AWS account. ::
4
5    aws chime create-account \
6        --name MyChimeAccount
7
8Output::
9
10    {
11        "Account": {
12            "AwsAccountId": "111122223333",
13            "AccountId": "a1b2c3d4-5678-90ab-cdef-11111EXAMPLE",
14            "Name": "MyChimeAccount",
15            "AccountType": "Team",
16            "CreatedTimestamp": "2019-01-04T17:11:22.003Z",
17            "DefaultLicense": "Pro",
18            "SupportedLicenses": [
19                "Basic",
20                "Pro"
21            ],
22            "SigninDelegateGroups": [
23                {
24                    "GroupName": "myGroup"
25                },
26            ]
27        }
28    }
29
30For more information, see `Getting Started <https://docs.aws.amazon.com/chime/latest/ag/getting-started.html>`_ in the *Amazon Chime Administration Guide*.