API Name
QueryProductList
Overview
You can call this operation to query all Alibaba Cloud product list.
Request parameters
| Name |
Type |
Required |
Description |
| PageNum |
Integer |
Yes |
Current page number |
| PageSize |
Integer |
No |
Page size, default is 20 |
| QueryTotalCount |
Boolean |
No |
Whether to return count of all products,default is false |
Response parameters
| Name |
Type |
Description |
| TotalCount |
Integer |
Total count of products |
| PageNum |
Integer |
Curent page number |
| PageSize |
Integer |
Size of each page |
| ProductList |
Product |
Product list information |
ProductList
| Name |
Type |
Description |
| ProductName |
String |
Product name |
| ProductCode |
String |
Product code |
| ProductType |
String |
Product type |
| SubscriptionType |
String |
Subscription,PayAsYouGo |
Error codes
| Error code |
Description |
HTTP status code |
Description |
| NotApplicable |
This API is not applicable for caller. |
400 |
The error message returned when you are not authorized to use the API. |
| MissingParameter |
The specified parameter xx is mandatory for this request. |
400 |
The error message returned when the xx parameter is not specified. |
| InvalidParameter |
The specified parameter xx is not valid. |
400 |
The error message returned when the xx parameter is invalid. |
| InvalidModuleCode |
The specified moduleCode is not valid. |
400 |
The error message returned when the specified moduleCode parameter is invalid. |
| InvalidConfigCode |
The specified configCode is not valid. |
400 |
The error message returned when the specified configCode parameter is invalid. |
| InvalidOwner |
The specified owner doesn’t belong to caller. |
400 |
The error message returned when the specified owner does not belong to the caller. |
| InvalidCaller |
The specified caller doesn’t exists. |
400 |
The error message returned when the caller is invalid. |
| InternalError |
The request processing has failed due to some unknown error, exception or failure. |
400 |
The error message returned when an unknown internal error occurs. |
| ProductNotFind |
Can not find inquired product, it may not exist. |
400 |
The error message returned when the specified product is invalid. |
Sample requests
https://business.ap-southeast-1.aliyuncs.com/?Action=QueryProductList&PageNum=1&PageSize=100&QueryTotalCount=true&PublicParameters
Sample responses
"Data": { "TotalCount": 4, "PageSize": 100, "PageNum": 1, "ProductList": { "Product": [ { "SubscriptionType": "Subscription", "ProductCode": "ddh", "ProductType": "", "ProductName": "Dedicated Host (Prepaid)" }, { "SubscriptionType": "Subscription", "ProductCode": "datav", "ProductType": "", "ProductName": "datav" }, { "SubscriptionType": "Subscription", "ProductCode": "ddh", "ProductType": "", "ProductName": "Dedicated Host (Prepaid)" }, { "SubscriptionType": "PayAsYouGo", "ProductCode": "ddh", "ProductType": "", "ProductName": "Dedicated Host (PAYG)" } ] } }, "Message": "Successful!", "RequestId": "6AC9CEC0-D02D-49AD-BB44-182BF37BB1ED", "Success": true, "Code": "Success"