[Deprecated] Get Domain Request Count - GetNewUcdnDomainRequestNum
Overview
Get Domain Request Count
💡 This interface is about to be deprecated, use GetUcdnDomainRequestNumV2 to get the number of requests.
Definition
Public Parameters
Parameter Name | Type | Description Information | Required |
---|---|---|---|
Action | string | Corresponding API command name, the current API is GetNewUcdnDomainRequestNum . | Yes |
PublicKey | string | The user's public key can be obtained from Console (opens in a new tab) | Yes |
Signature | string | User signature generated based on public key and API command, see Signature Algorithm | Yes |
Request Parameters
Parameter Name | Type | Description Information | Required |
---|---|---|---|
ProjectId | string | Project ID. If not filled in, the default project is used, and the sub-account must be filled in. Please refer to the GetProjectList interface. | No |
Type | int | Time granularity (0 represents a granularity of 5 minutes, 1 represents a granularity of 1 hour, 2 represents a granularity of one day) | Yes |
DomainId.N | string | Domain ID, the ID generated when creating a domain. Default to all domains. | No |
Areacode | string | The query area 'cn' represents domestic, 'abroad' represents overseas, only supports domestic. | No |
BeginTime | int | The start time of the query, formatted as Unix Timestamp. If there is an EndTime, BeginTime must be assigned. If not assigned, a missing parameter error will be returned. If there is no EndTime, BeginTime can also be unassigned. The default EndTime is the current time, and the default BeginTime is the current time of the previous day. | No |
EndTime | int | The end time of the query, in Unix Timestamp format. EndTime defaults to the current time, and BeginTime defaults to the time one day before the current time. | No |
Response Field
Field Name | Type | Description Information | Required |
---|---|---|---|
RetCode | int | Return status code. If it is 0, it means successful return. If it is not 0, it means failure. | Yes |
Action | string | Operation command name. | Yes |
Message | string | Returns an error message, providing detailed description when RetCode is non-zero. | No |
RequestList | array[RequestInfo] | Request number instance table. | No |
Data Model
RequestInfo
Field Name | Type | Description Information | Required |
---|---|---|---|
Time | int | Time point for bandwidth acquisition. Format: Timestamp | No |
CdnRequest | float | Returns the sum of the requests received by the CDN within the specified time interval. | No |
OriginRequest | float | Returns the sum of CDN back-to-source requests within the specified time range. | No |
Example
Request Example
https://api.surfercloud.com/?Action=GetNewUcdnDomainRequestNum
&ProjectId=xxxxx
&DomainId.n=DAqjTRaw
&Areacode=nXjmAdrO
&BeginTime=8
&EndTime=5
&Type=3
Response Example
{
"Action": "GetNewUcdnDomainRequestNumResponse",
"RequestList": [
{
"CdnRequest": 1,
"OriginRequest": 6,
"Time": 4
},
{
"CdnRequest": 9,
"OriginRequest": 5,
"Time": 5
},
{
"CdnRequest": 7,
"OriginRequest": 4,
"Time": 6
}
],
"RetCode": 0
}