Retrieve the list of installable team applications, supporting pagination with up to 100 items per page.
POST
/api/v1/app/teamList
Parameter | Type | Required | Description |
---|---|---|---|
page | int | No | Request the page number. If not provided, it defaults to the first page. |
pagesize | int | No | Number of items per page. If not provided, it defaults to 10 items per page. |
{
"page": 1,
"pagesize": 100
}
{
"code": 200,
"data": {
"list": [
{
"id": "9Jp7o#1", // app_id
"name": "TikTok",
"pkg": "com.zhiliaoapp.musically",
"version_list": [
{
"id": "9Jp7o#1", // app_version_id
"name": "33.0.3"
}
]
}
],
"page": 1,
"pagesize": 10,
"total": 1,
"total_page": 1
},
"message": "Success"
}