DELETE api/Networks/{id}/Queue?commandID={commandID}

Determines if there is a Queue Item with a Command ID that matches the input and deletes it from the Queue if found

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

ID of the Network to delete the Queue Items for

integer

Required

commandID

Unique ID for the Command to be deleted from the Queue

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

True if a Queued Item was removed. If the Item fails to delete or an Item was not found, this returns false

GetBooleanResponse
NameDescriptionTypeAdditional information
Bool

The boolean result

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:54.2093229+10:00",
    "BuildDateUTC": "2026-01-09T23:47:54.2093229+10:00"
  },
  "VersionInformation": {
    "Major": 1,
    "Minor": 8,
    "Hotfix": 0,
    "Beta": true,
    "Version": "1.8.0.BETA"
  },
  "Bool": true
}