POST api/SensorData/SyncProbeLogs

Request Information

URI Parameters

None.

Body Parameters

GetSyncProbeLogsRequest
NameDescriptionTypeAdditional information
UHN

string

None.

ProbeLogs

DataTable

None.

Request Formats

application/json, text/json

Sample:
{
  "UHN": "sample string 1",
  "ProbeLogs": null
}

application/xml, text/xml

Sample:
<GetSyncProbeLogsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Luhmann.SmartGrid.Models.Rest">
  <ProbeLogs i:nil="true" />
  <UHN>sample string 1</UHN>
</GetSyncProbeLogsRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BaseApiResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

Status

integer

None.

StatusDesc

string

None.

StatusEx

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Status": 2,
  "StatusDesc": "sample string 3",
  "StatusEx": "sample string 4"
}

application/xml, text/xml

Sample:
<BaseApiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Luhmann.SmartGrid.Models.Rest">
  <Status>2</Status>
  <StatusDesc>sample string 3</StatusDesc>
  <StatusEx>sample string 4</StatusEx>
  <Success>true</Success>
</BaseApiResponse>