APP Management API Definition
Download OpenAPI specification:Download
Get App List
Use the appType parameter to query data for different types of apps. Currently, only supports "ide" type, which refers to the Tianfang (Business Designer) app.
Authorizations:
Sign
query Parameters
appType required | Array of strings APP type(s) to query. Use an array to specify multiple types. Currently, only supports "ide". If the specified type does not exist, an empty list will be returned. |
current required | integer Default: 1 Current page number, starting from 1. |
pageSize required | integer <= 100 Default: 20 Number of items per page (default is 20, maximum is 100). |
header Parameters
Accept-Language | string <= 8 characters Example: zh-cn Internationalization language (returns content in different languages based on the language code). Defaults to the language of the server's operating system. English is en-us, Chinese is zh-cn. |
Responses
Response samples
- 200
- 400
Content type
application/json
{- "list": [
- {
- "appId": "App_9b04f4ae960146eaa3f2e82a39e757f5",
- "icon": "/api/image/download?fileName=2021-11-02/1635867899321/App_9b04f4ae960146eaa3f2e82a39e757f5.jpg",
- "appName": "test1",
- "name": "test_1",
- "appType": "ide",
- "appVersion": "1.0.0",
- "vendorName": "zhangsan"
}, - {
- "appId": "App_2df207739b1c49158eff72ec1f89dca5",
- "icon": "/api/image/download?fileName=2021-11-02/1635867899409/App_2df207739b1c49158eff72ec1f89dca5.jpg",
- "appName": "test2",
- "name": "test_2",
- "appType": "ide",
- "appVersion": "1.0.0",
- "vendorName": "lisi"
}
], - "pagination": {
- "total": 2,
- "pageSize": 20,
- "current": 1
}
}