GET api/OrderProcessingLog/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

OrderProcessingLogData
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Status

integer

None.

EventCode

string

None.

EventTime

string

None.

Identifier

string

None.

Name

string

None.

Notes

string

None.

Updated

date

None.

IsDeleted

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "6959c89a-7ca9-4e71-b81e-27e6658c337d",
  "Status": 1,
  "EventCode": "sample string 2",
  "EventTime": "sample string 3",
  "Identifier": "sample string 4",
  "Name": "sample string 5",
  "Notes": "sample string 6",
  "Updated": "2025-10-26T03:46:53.0643045-04:00",
  "IsDeleted": 1
}

application/xml, text/xml

Sample:
<OrderProcessingLogData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models">
  <EventCode>sample string 2</EventCode>
  <EventTime>sample string 3</EventTime>
  <Id>6959c89a-7ca9-4e71-b81e-27e6658c337d</Id>
  <Identifier>sample string 4</Identifier>
  <IsDeleted>1</IsDeleted>
  <Name>sample string 5</Name>
  <Notes>sample string 6</Notes>
  <Status>1</Status>
  <Updated>2025-10-26T03:46:53.0643045-04:00</Updated>
</OrderProcessingLogData>