| Required role: | SysAdmin |
| GET | /dbadmin/servers/{Id}/info |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Id | path | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ResponseStatus | form | ResponseStatus | No | |
| Result | form | DbServerInfo | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Domain | form | string | No | |
| MachineName | form | string | No | |
| CpuCount | form | int | No | |
| PhysicalMemoryMb | form | long | No | |
| IPAddress | form | string | No | |
| Port | form | string | No | |
| Version | form | string | No | |
| IsClustered | form | int | No | |
| ClusterNodes | form | string | No | |
| Meta | form | Dictionary<string, string> | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /dbadmin/servers/{Id}/info HTTP/1.1
Host: 10.10.0.107
Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
},
Result:
{
Domain: String,
MachineName: String,
CpuCount: 0,
PhysicalMemoryMb: 0,
IPAddress: String,
Port: String,
Version: String,
IsClustered: 0,
ClusterNodes: String,
Meta:
{
String: String
}
}
}