Description
For querying the list and basic information of apps.
- This function is intended for API callers.
- The app ID can be optionally input.
Request parameters
Name | Type | Required? | Description |
---|---|---|---|
Action | String | Yes | Operation interface, which is a required parameter; value: DescribeAppAttributes. |
AppId | Long | No | ID of the app. |
PageSize | Integer | No | Number of lines per page set at paging query; maximum value: 100; default value: 10. |
PageNumber | Integer | No | The page number specified for query; default value: 1; the starting number: 1. |
Return parameters
Name | Type | Description |
---|---|---|
RequestId | String | ID of the current request. |
TotalCount | Integer | Total number of returned results. |
PageNumber | Integer | Page number specified to be returned. |
PageSize | Integer | Specified total number of results returned per page. |
Apps | AppAttribute | Returned app information, in an array consisting of AppAttribute. |
Examples
Request example
https://apigateway.cn-qingdao.aliyuncs.com/?Action=DescribeAppAttributes
&AppId=20112314518278
&pageSize=10
&pageNumber=1
&<Public request parameters>
Response example
XML
format
<DescribeAppAttributesResponse>
<RequestId>CEF72CEB-54B6-4AE8-B225-F876FF7BZ015</RequestId>
<TotalCount>1</TotalCount>
<PageSize>10</PageSize>
<PageNumber>1</PageNumber>
<Apps>
<AppAttribute>
<AppId>20112314518278</AppId>
<AppName>CreateApptest</AppName>
<Description>app test</Description>
<CreatedTime>2016-07-31T04:10:19Z</CreatedTime>
<ModifiedTime>2016-07-31T04:10:19Z</ModifiedTime>
</AppAttribute>
</Apps>
</DescribeAppAttributesResponse>
JSON
format
{
"TotalCount":1,
"PageSize":10,
"PageNumber":1,
"RequestId":"8883AC74-259D-4C0B-99FC-0B7F9A588B2F",
"Apps":
{
"AppAttribute":
[
{
"AppId":20112314518278,
"AppName":"CreateApptest",
"Description":"app test",
"CreatedTime":"2016-07-31T04:10:19Z",
"ModifiedTime":"2016-07-31T04:10:19Z"
}
]
}
}