GET /api/v1/application/list
Description: Query the list of application categories. You can get the application category ID to create profies and edit profile information.
Optional parameters in the query can be omitted.
Name | type | Necessary | Default | Example | Description |
---|---|---|---|---|---|
page | text | NO | 1 | 1 | Page default 1 first page |
page_size | text | NO | 1 | 10 | Default 1 per page |
//Operation succeeded
{
"data": {
"list": [
{
"id": "XXX", // Application Category ID
"name": "XXX",// Application Category Name
"remark": "XXX"// Application Category Remarks
}
],
"page": 1,
"page_size": 10
},
"code": 0,
"msg": "Success"
}
//Operation failed
{
"code":-1,
"data":{},
"msg":"failed"
}