GET a/PosOrdersTransactions/GetTransactionHeaders?start={start}&end={end}
Get a list of sales headers for the report period
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| start |
Report start time |
date |
Required |
| end |
Report end time |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
Queryable List of sales headers
Collection of OrderTransactionHeaderDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| PosIdentifier |
Gets or sets the POS specific identifier for this transacion |
string |
None. |
| Timestamp |
Gets or sets the Time (at POS system's local time) that this transaciton occured |
date |
None. |
| StaffName |
Gets or sets the Name of the staff member who processed the transaciton |
string |
None. |
| OrderAmount |
Gets or sets the dollar amount invoiced for this transaciton |
decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"posIdentifier": "c2FtcGxlIHN0cmluZyAx",
"timestamp": "2026-04-04T22:23:10.5650641+00:00",
"staffName": "sample string 3",
"orderAmount": 1.0
},
{
"posIdentifier": "c2FtcGxlIHN0cmluZyAx",
"timestamp": "2026-04-04T22:23:10.5650641+00:00",
"staffName": "sample string 3",
"orderAmount": 1.0
}
]
application/xml, text/xml
Sample:
<ArrayOfOrderTransactionHeaderDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Loaded.WebApi.Models.POS.Transactions">
<OrderTransactionHeaderDTO>
<OrderAmount>1</OrderAmount>
<PosIdentifier>sample string 1</PosIdentifier>
<StaffName>sample string 3</StaffName>
<Timestamp xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2026-04-04T22:23:10.5650641Z</d3p1:DateTime>
<d3p1:OffsetMinutes>0</d3p1:OffsetMinutes>
</Timestamp>
</OrderTransactionHeaderDTO>
<OrderTransactionHeaderDTO>
<OrderAmount>1</OrderAmount>
<PosIdentifier>sample string 1</PosIdentifier>
<StaffName>sample string 3</StaffName>
<Timestamp xmlns:d3p1="http://schemas.datacontract.org/2004/07/System">
<d3p1:DateTime>2026-04-04T22:23:10.5650641Z</d3p1:DateTime>
<d3p1:OffsetMinutes>0</d3p1:OffsetMinutes>
</Timestamp>
</OrderTransactionHeaderDTO>
</ArrayOfOrderTransactionHeaderDTO>