获取租户信息
开发中
GET
/api/SaasTenant/GetEditDto
请求参数
Query 参数
id
string
租户ID
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/SaasTenant/GetEditDto?id'
返回响应
🟢200成功
application/json
Body
state
integer
必需
message
null
必需
data
object
必需
ID
string
租户ID
SaasAppID
string
SaaS应用ID
Code
string
租户编码
Name
string
租户名称
ProductInstanceID
null
产品实例ID
DbServerID
null
租户数据库服务器ID
DbName
string
租户数据库名称
FileServerID
null
租户文件服务ID
IsEnable
boolean
是否启用
Remark
null
备注
示例
{
"state": 200,
"message": null,
"data": {
"ID": "97f3fa99-daf5-4255-aa80-0eabf5e78e78",
"SaasAppID": "3fff2f70-37e8-4ac6-ac73-af410599c011",
"Code": "dev",
"Name": "9000",
"DbServerID": null,
"DbName": "qdm_dev",
"FileServerID": null,
"IsEnable": true,
"Remark": null
}
}
修改于 2025-01-08 05:34:41