DescribeBillingRegions

1. API Description

This API (DescribeBillingRegions) is used to query billing regions.

2. Output Parameters

Parameter NameTypeDescription

regionSet

Array of BillingRegion

Collection of billing region information.

requestId

String

Unique request ID. Returned with every request. This request's requestId is needed when troubleshooting.

3. Code Example

  1. Query billing regions.

POST / HTTP/1.1
Host: console.zenlayer.com/api/v2/cdn
Content-Type: application/json
X-TC-Action: DescribeBillingRegions
<Common Request Params>

Request:
{
}

Response:
{
  "requestId": "T6883FCD0-3E7D-44EA-A517-A421A52A27F4",
  "response": {
    "requestId": "T6883FCD0-3E7D-44EA-A517-A421A52A27F4",
    "regionSet": [
      {
        "regionId": "OTHER",
        "regionName": "Other"
      },
      {
        "regionId": "NAEU",
        "regionName": "North America & European Union"
      }
    ]
  }
}

4. Error Codes

The following includes error codes encountered in business logic. For other error codes, see Common Error Codes.

Last updated