DELETE api/PositionDevices/Logs

Used to delete the Position Device Log that matches the input Integer ID

Request Information

URI Parameters

None.

Body Parameters

Information for what PositionDevice Log to delete

DeviceLog_Delete
NameDescriptionTypeAdditional information
ID

ID of the Log to delete

integer

None.

DeviceID

ID of the Device this Log belongs to

integer

None.

Request Formats

application/json, text/json, text/html

Sample:
{
  "ID": 1,
  "DeviceID": 2
}

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 'DeviceLog_Delete'.

Response Information

Resource Description

Whether or not the delete succeeded

DeleteResponse
NameDescriptionTypeAdditional information
Success

Was it successful or not

boolean

None.

Messages

Array of messages

Collection of Message

None.

ServerInformation

Relevant information regarding the Server

ServerInformation

None.

VersionInformation

Relevant information regarding the API's version

VersionInformation

None.

Response Formats

application/json, text/json, text/html

Sample:
{
  "Messages": [
    {
      "Severity": 0,
      "MessageCode": 1,
      "CodeDesc": 2,
      "MessageText": "sample string 3",
      "RecordNumber": 4
    },
    {
      "Severity": 0,
      "MessageCode": 1,
      "CodeDesc": 2,
      "MessageText": "sample string 3",
      "RecordNumber": 4
    }
  ],
  "ServerInformation": {
    "CurrentTimeUTC": "2026-01-09T23:47:53.4436939+10:00",
    "BuildDateUTC": "2026-01-09T23:47:53.4436939+10:00"
  },
  "VersionInformation": {
    "Major": 1,
    "Minor": 8,
    "Hotfix": 0,
    "Beta": true,
    "Version": "1.8.0.BETA"
  },
  "Success": true
}