GET orders/{ordernumber}/audit
Get the audit records for a single order
Request Information
URI Parameters
Name | Description | Type | Additional 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 OrderAuditModelName | Description | Type | Additional 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-11-21T09:38:41.7895423+00:00", "OrderStatus": "sample string 1", "User": "sample string 2", "Pickwave": 1, "PickerName": "sample string 3", "EmailSentDate": "2024-11-21T09:38:41.7895423+00:00" }, { "DateUpdated": "2024-11-21T09:38:41.7895423+00:00", "OrderStatus": "sample string 1", "User": "sample string 2", "Pickwave": 1, "PickerName": "sample string 3", "EmailSentDate": "2024-11-21T09:38:41.7895423+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-11-21T09:38:41.7895423+00:00</DateUpdated> <OrderStatus>sample string 1</OrderStatus> <User>sample string 2</User> <Pickwave>1</Pickwave> <PickerName>sample string 3</PickerName> <EmailSentDate>2024-11-21T09:38:41.7895423+00:00</EmailSentDate> </OrderAuditModel> <OrderAuditModel> <DateUpdated>2024-11-21T09:38:41.7895423+00:00</DateUpdated> <OrderStatus>sample string 1</OrderStatus> <User>sample string 2</User> <Pickwave>1</Pickwave> <PickerName>sample string 3</PickerName> <EmailSentDate>2024-11-21T09:38:41.7895423+00:00</EmailSentDate> </OrderAuditModel> </ArrayOfOrderAuditModel>