GET Tenants({id})/AvailableDataCenters

Get the list of all datacenters available for use by a tenant.

Request Information

Parameters

NameDescriptionAdditional information
id

ID of the tenant.

Type:

name

See Filtering, Arranging, and Paging.

Type: String

skip

See Filtering, Arranging, and Paging.

Type: Number

take

See Filtering, Arranging, and Paging.

Type: Number

Response Information

A list of datacenters.

Response type

CollectionResultModel<TenantDataCenterModel>

Response body formats

application/json, text/json

Sample:
{
  "Href": "[api:Tenants(91ade655-feb5-47d3-9585-a5827ad50132)/AvailableDataCenters]",
  "Count": 1,
  "TotalMatchingFilter": 1,
  "Items": [
    {
      "DataCenter": {
        "Href": "[api:DataCenters(af1fc9c4-dee5-4b0d-836c-9e1c5b57a88a)]",
        "Name": "datacenter1",
        "Id": "af1fc9c4-dee5-4b0d-836c-9e1c5b57a88a"
      },
      "NetScalerGatewayAddress": "https://ag.tenant1.datacenter1.csp.com"
    }
  ]
}