获取SaaS应用列表
开发中
POST
/api/Saas/GetList
请求参数
Body 参数application/json
groupID
string
云主机分组ID
hostID
string
云主机ID
search
string
搜索关键字
pagination
object
分页信息
rows
integer
必需
page
integer
必需
sidx
string
必需
sord
string
必需
records
integer
必需
示例
{}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/Saas/GetList' \
--header 'Content-Type: application/json' \
--data-raw '{}'
返回响应
🟢200成功
application/json
Body
state
integer
必需
message
null
必需
data
object
必需
rows
array [object {11}]
必需
total
integer
必需
示例
{
"state": 200,
"message": null,
"data": {
"rows": [
{
"ID": "3fff2f70-37e8-4ac6-ac73-af410599c011",
"HostID": "3dd6b51a-3007-4de2-82c2-d318b05833a9",
"Code": "dev",
"Name": "qdm saas",
"IsEnable": true,
"Remark": null,
"CreateTime": "2024-12-27 00:00:00.000",
"CreateUserId": null,
"IsDeleted": false,
"DeleteTime": null,
"DeleteUserId": null
}
],
"total": 1
}
}
修改于 2025-01-08 05:15:05