GET orders/{ordernumber}/audit

Get the audit records for a single order

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ordernumber The order number you wish you retrieve audits records for integer Required

Body Parameters

None.

Response Information

Resource Description

Get the audit records for a single order

Collection of OrderAuditModel
NameDescriptionTypeAdditional information
DateUpdated When the audit was recorded date None.
OrderStatus The status of the order when the audit entry was recorded string None.
User The user responsible for the audited change string None.
Pickwave The pickwave the order is assigned to integer None.
PickerName The name of the picker string None.
EmailSentDate The date the email was sent date None.

Response Formats

application/json, text/json

Sample:
[
  {
    "DateUpdated": "2024-03-29T06:52:43.9375243+00:00",
    "OrderStatus": "sample string 1",
    "User": "sample string 2",
    "Pickwave": 1,
    "PickerName": "sample string 3",
    "EmailSentDate": "2024-03-29T06:52:43.9388266+00:00"
  },
  {
    "DateUpdated": "2024-03-29T06:52:43.9375243+00:00",
    "OrderStatus": "sample string 1",
    "User": "sample string 2",
    "Pickwave": 1,
    "PickerName": "sample string 3",
    "EmailSentDate": "2024-03-29T06:52:43.9388266+00:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfOrderAuditModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <OrderAuditModel>
    <DateUpdated>2024-03-29T06:52:43.9375243+00:00</DateUpdated>
    <OrderStatus>sample string 1</OrderStatus>
    <User>sample string 2</User>
    <Pickwave>1</Pickwave>
    <PickerName>sample string 3</PickerName>
    <EmailSentDate>2024-03-29T06:52:43.9388266+00:00</EmailSentDate>
  </OrderAuditModel>
  <OrderAuditModel>
    <DateUpdated>2024-03-29T06:52:43.9375243+00:00</DateUpdated>
    <OrderStatus>sample string 1</OrderStatus>
    <User>sample string 2</User>
    <Pickwave>1</Pickwave>
    <PickerName>sample string 3</PickerName>
    <EmailSentDate>2024-03-29T06:52:43.9388266+00:00</EmailSentDate>
  </OrderAuditModel>
</ArrayOfOrderAuditModel>