DELETE api/OrderProcessingLog/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

OrderProcessingLog
NameDescriptionTypeAdditional information
Status

integer

None.

EventCode

string

None.

EventTime

string

None.

Notes

string

None.

IsDeleted

integer

None.

Id

globally unique identifier

None.

ClientId

globally unique identifier

None.

Client

Client

None.

Identifier

string

None.

Name

string

None.

Active

boolean

None.

Inserted

date

None.

InsertSource

integer

None.

InsertAgent

string

None.

Updated

date

None.

UpdateSource

integer

None.

UpdateAgent

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 1,
  "EventCode": "sample string 2",
  "EventTime": "sample string 3",
  "Notes": "sample string 4",
  "IsDeleted": 1,
  "Id": "168f8712-6f80-4e64-971f-3e7943ed96f8",
  "ClientId": "e9454fb1-2c9a-4015-a6e5-1211cd5f6f0a",
  "Client": {
    "Id": "c917ae37-27a9-409d-a2aa-0dbbeb1483f6",
    "Name": "sample string 2",
    "ShortName": "sample string 3",
    "TimeZone": "sample string 4",
    "RotationStartUtc": "2025-10-26T03:35:52.2170242-04:00",
    "RotationWeeks": 6,
    "ShipDateOffset": 7.0,
    "Identifier": "sample string 8"
  },
  "Identifier": "sample string 7",
  "Name": "sample string 8",
  "Active": true,
  "Inserted": "2025-10-26T03:35:52.2170242-04:00",
  "InsertSource": 11,
  "InsertAgent": "sample string 12",
  "Updated": "2025-10-26T03:35:52.2170242-04:00",
  "UpdateSource": 14,
  "UpdateAgent": "sample string 15"
}

application/xml, text/xml

Sample:
<OrderProcessingLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models">
  <Active>true</Active>
  <Client>
    <Id>c917ae37-27a9-409d-a2aa-0dbbeb1483f6</Id>
    <Identifier>sample string 8</Identifier>
    <Name>sample string 2</Name>
    <RotationStartUtc>2025-10-26T03:35:52.2170242-04:00</RotationStartUtc>
    <RotationWeeks>6</RotationWeeks>
    <ShipDateOffset>7</ShipDateOffset>
    <ShortName>sample string 3</ShortName>
    <TimeZone>sample string 4</TimeZone>
  </Client>
  <ClientId>e9454fb1-2c9a-4015-a6e5-1211cd5f6f0a</ClientId>
  <Id>168f8712-6f80-4e64-971f-3e7943ed96f8</Id>
  <Identifier>sample string 7</Identifier>
  <InsertAgent>sample string 12</InsertAgent>
  <InsertSource>11</InsertSource>
  <Inserted>2025-10-26T03:35:52.2170242-04:00</Inserted>
  <Name>sample string 8</Name>
  <UpdateAgent>sample string 15</UpdateAgent>
  <UpdateSource>14</UpdateSource>
  <Updated>2025-10-26T03:35:52.2170242-04:00</Updated>
  <EventCode>sample string 2</EventCode>
  <EventTime>sample string 3</EventTime>
  <IsDeleted>1</IsDeleted>
  <Notes>sample string 4</Notes>
  <Status>1</Status>
</OrderProcessingLog>