1**To list proxy sessions**
2
3The following ``list-proxy-sessions`` example lists the proxy sessions for your Amazon Chime Voice Connector. ::
4
5    aws chime list-proxy-sessions \
6        --voice-connector-id abcdef1ghij2klmno3pqr4
7
8Output::
9
10    {
11        "ProxySession": {
12            "VoiceConnectorId": "abcdef1ghij2klmno3pqr4",
13            "ProxySessionId": "123a4bc5-67d8-901e-2f3g-h4ghjk56789l",
14            "Status": "Open",
15            "ExpiryMinutes": 60,
16            "Capabilities": [
17                "SMS",
18                "Voice"
19            ],
20            "CreatedTimestamp": "2020-04-15T16:10:10.288Z",
21            "UpdatedTimestamp": "2020-04-15T16:10:10.288Z",
22            "Participants": [
23                {
24                    "PhoneNumber": "+12065550100",
25                    "ProxyPhoneNumber": "+19135550199"
26                },
27                {
28                    "PhoneNumber": "+14015550101",
29                    "ProxyPhoneNumber": "+19135550199"
30                }
31            ]
32        }
33    }
34
35For more information, see `Proxy Phone Sessions <https://docs.aws.amazon.com/chime/latest/dg/proxy-phone-sessions.html>`__ in the *Amazon Chime Developer Guide*.
36