获取产品实例类别
开发中
POST
/api/ProductInstance/GetList
请求参数
Body 参数application/json
GroupID
string
分组ID
HostID
string
云主机ID
Search
string
搜索关键字
IsDeleted
boolean
是否删除
Pagination
null
分页信息
示例
{
"GroupID": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"HostID": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"Search": "string",
"IsDeleted": true,
"Pagination": null
}
示例代码
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/ProductInstance/GetList' \
--header 'Content-Type: application/json' \
--data-raw '{
"GroupID": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"HostID": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"Search": "string",
"IsDeleted": true,
"Pagination": null
}'
返回响应
🟢200成功
application/json
Body
rows
array [object {21}]
必需
Id
string
产品实例ID
HostID
string
云主机ID
HostName
string
云主机名称
ProductCode
string
产品编码
ProductName
string
产品名称
DbServerID
string
数据库服务器ID
DbName
string
数据库名称
Status
integer
状态
ProgramVersion
string
程序版本号
WebName
string
可选
WebUrl
string
Web Url
WebPath
string
Web目录
WebAPIName
string
可选
WebAPIUrl
string
WebAPI Url
WebAPIPath
string
WebAPI目录
UpdateTime
string
更新时间
IsDeleted
boolean
是否已删除
CreateTime
string
可选
CreateUserId
string
可选
DeleteTime
string
可选
DeleteUserId
string
可选
total
integer
必需
示例
{
"rows": [
{
"Id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"HostID": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"HostName": "string",
"ProductCode": "string",
"ProductName": "string",
"DbServerID": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"DbName": "string",
"Status": 0,
"ProgramVersion": "string",
"WebName": "string",
"WebUrl": "string",
"WebPath": "string",
"WebAPIName": "string",
"WebAPIUrl": "string",
"WebAPIPath": "string",
"UpdateTime": "2025-01-17T08:00:43.354Z",
"IsDeleted": true,
"CreateTime": "2025-01-17T08:00:43.354Z",
"CreateUserId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"DeleteTime": "2025-01-17T08:00:43.354Z",
"DeleteUserId": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
],
"total": 0
}
修改于 2025-01-17 08:03:16