POST Diagnostics/SetServerDiagnosticMeta

Request Information

URI Parameters

None.

Body Parameters

Diagnostic_Server_Meta
NameDescriptionTypeAdditional information
ID

integer

None.

Server_Code

string

None.

OSType

string

None.

Architecture

string

None.

ComputerName

string

None.

CPUCores

integer

None.

CPUName

string

None.

RAM

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Server_Code": "sample string 2",
  "OSType": "sample string 3",
  "Architecture": "sample string 4",
  "ComputerName": "sample string 5",
  "CPUCores": 6,
  "CPUName": "sample string 7",
  "RAM": 8.1
}

application/xml, text/xml

Sample:
<Diagnostic_Server_Meta xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DAP_Shared.Models.Client.Diagnostics">
  <Architecture>sample string 4</Architecture>
  <CPUCores>6</CPUCores>
  <CPUName>sample string 7</CPUName>
  <ComputerName>sample string 5</ComputerName>
  <ID>1</ID>
  <OSType>sample string 3</OSType>
  <RAM>8.1</RAM>
  <Server_Code>sample string 2</Server_Code>
</Diagnostic_Server_Meta>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'Diagnostic_Server_Meta'.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>