Menu

List of Team App

Usage Instructions

Retrieve the list of installable team applications, supporting pagination with up to 100 items per page.

Request Instructions

POST /api/v1/app/teamList

Request Parameters

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.

Request Example

json Copy
{
    "page": 1,
    "pagesize": 100
}

Response Example

json Copy
{
    "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"
}
Previous
List of Platform App
Next
Batch Install App
Last modified: 2025-03-07Powered by