List Subscription User Accounts

 

Updated: July 10, 2015

The List Subscription User Accounts operation lists the user accounts that can access resources in the specified subscription.

The List Subscription User Accounts request may be specified as follows. Replace <subscription-id> with the subscription ID.

Method

Request URI

GET

https://management.core.windows.net/<subscription-id>/principals

The following table describes the request headers.

Request Header

Description

x-ms-version

Required. Specifies the version of the operation to use for this request. This header should be set to 2013-08-01 or higher.

The response includes an HTTP status code, a set of response headers, and a response body.

A successful operation returns status code 200 (OK).

The response for this operation includes the following headers. The response may also include additional standard HTTP headers.

Response Header

Description

x-ms-request-id

A value that uniquely identifies a request made against the management service.

The format of the response body is as follows:


<?xml version="1.0" encoding="utf-8"?>
<Principal xmlns=”http://schemas.microsoft.com/windowsazure”>
  <Role>role-names-for-user-account</Role>
  <Email>email-address-for-user-account</Email>
</Principal>

The following table describes the elements of the response body.

Element name

Description

Role

Specifies a semi-colon separated list of security roles for a user account.

Possible values are:

  • ServiceAdministrator

  • CoAdministrator

  • AccountAdministrator

Email

Specifies the email address that is associated with the user account.

Show: