queryApplist
Retrieve paginated lists of RPA applications by filtering based on app ID, name, owner, or other criteria, enabling efficient management of automation workflows.
Instructions
该接口用于分页获取RPA应用列表。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appId | No | RPA应用UUID | |
appName | No | RPA应用名称模糊匹配 | |
ownerUserSearchKey | No | 用户账号精确匹配 | |
page | No | 页码 | 1 |
size | No | 一页大小 | 30 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"appId": {
"description": "RPA应用UUID",
"type": "string"
},
"appName": {
"description": "RPA应用名称模糊匹配",
"type": "string"
},
"ownerUserSearchKey": {
"description": "用户账号精确匹配",
"type": "string"
},
"page": {
"default": "1",
"description": "页码",
"type": "string"
},
"size": {
"default": "30",
"description": "一页大小",
"type": "string"
}
},
"type": "object"
}