跳到主要内容

查询账户下的应用

描述

查询已上传至账户的应用列表

请求参数

参数名参数类型是否必填参数说明
ActionString操作方法:ListUserApp,此参数为公共参数,不必放body里面
PageNoInteger页码
PageSizeInteger每页数量
AppNameStringApp应用名称
IsAdminInteger应用类型:1系统;0个人;不传默认返回个人
IamUserIdString子账号Id,用以过滤具体子账号专有应用

返回参数

名称类型说明
PagePage由Page组成的数组格式,返回分页信息
ListList由List组成的数组格式,返回App应用列表信息

Page

分页信息的数据类型

名称类型说明
PageSizeInteger页面总数
CurrentPageNoInteger当前分页数
TotalPageInteger总页数
TotalCountInteger总数

List

App应用列表的数据类型

名称类型说明
AppIdStringApp应用ID
ApkNameStringapk名称
AppNameString安装包名称
PackageNameString应用包名称
VersionNameString应用版本号
IsAdminString应用类型 1系统;0个人
AppSizeInteger应用大小
CreateTimeInteger创建时间戳
UpdateTimeInteger更新时间戳
OtherVersionOtherVersion由OtherVersion组成的数组格式,返回其他版本信息

OtherVersion

名称类型说明
AppIdStringApp应用ID
ApkNameStringapk名称
AppNameString安装包名称
PackageNameString应用包名称
VersionNameString应用版本号
IsAdminString应用类型 1系统;0个人
AppSizeInteger应用大小
CreateTimeInteger创建时间戳
UpdateTimeInteger更新时间戳

请求示例

post https://api.chinac.com/v2/?Action=ListUserApp&其他公共参数

返回示例

{
"code": 10000,
"message": "",
"data": {
"Page": {
"PageSize": 10,
"CurrentPageNo": 1,
"TotalPage": 1,
"TotalCount": 1
},
"List": [{
"AppId": "e3553b34cc95431e984b83f87d89c21f",
"ApkName": "cn.xuexi.android_2921.apk",
"AppName": "学习强国",
"UpdateTime": 0,
"IsAdmin": 0,
"VersionName": "2.9.2",
"AppSize": 87128239,
"CreateTime": 1583302388745,
"PackageName": "cn.xuexi.android",
"IamUserId":"182000",
"OtherVersion": [
{
"FileName": "xxx.apk",
"ApkName": "xxx.apk",
"AppName": "xxx",
"UpdateTime": 0,
"IsAdmin": 0,
"VersionName": "x.x.xx",
"UserId": xxxx,
"AppSize": xxxxx,
"CreateTime": xxx,
"AppId": "xxxxx",
"PackageName": "xx.xx.xxx"
}
],
}]
}
}