DescribeOriginBandwidth

1. API Description

This interface (DescribeOriginBandwidth) is used to query CDN back to origin bandwidth.

2. Request Parameters

The following request parameter list includes only those required by the interface:

Parameter NameRequiredTypeDescription

startTime

Yes

String

Start time

endTime

Yes

String

End time

domain

No

String

Accelerated domain

3. Output Parameters

Parameter NameTypeDescription

dataSet

Array of BandwithData

Origin bandwidth.

requestId

String

Unique request ID returned with each request. Provide this ID when locating issues.

4. Code Example

  1. Query CDN origin bandwidth.

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

Request:
{
}

Response:
{
  "requestId": "T6883FCD0-3E7D-44EA-A517-A421A52A27F4",
  "response": {
    "requestId": "T6883FCD0-3E7D-44EA-A517-A421A52A27F4",
    "dataSet": [{
      "data": [{
        "time": "2022-06-14T00:00:00.000Z",
        "value": 1.4
      },
      {
        "time": "2022-06-14T00:05:00.000Z",
        "value": 1.4
      },
      {
        "time": "2022-06-14T00:10:00.000Z",
        "value": 1.4
      }],
      "domain": "www.ddd123.com"
    }]
  }
}

5. Error Codes

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

Last updated