GET Companies({CompanyId})/Locations({LocationId})/CompletedOrders?filter={filter}
Returns Completed orders for a Company by Date Range with Filtering
Information:
Base URL:
https://api.covasoft.net/pointofsale
Example of a call would be:
https://api.covasoft.net/pointofsale/Companies({CompanyId})/Locations({LocationId})/CompletedOrders?$filter=Created ge datetimeoffset'2019-09-01T00:00:00.000Z' and Created le datetimeoffset'2019-09-20T15:59:59.999Z'&$top=100&$skip=0
Odata Filters
Required: Created ge datetimeoffset'{UTCdatetime}' and Created le datetimeoffset'{UTCdatetime}'
FulfillmentMethod eq '{FulfillmentMethod}'
Source eq '{Source}'
Normal Odata pagings with $top & $skip
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyId |
The unique Company Id that was provided in your onboarding pacakage. |
integer |
Required |
| LocationId |
This is Location Id where you want to get the Completed Sales Orders |
integer |
Required |
| filter |
The Odata filter applied to this call, see Odata filter section above |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Completed orders for a Company by Date Range with Filtering
Collection of GetCompletedOrdersByDateRangeReturn| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ReceiptNumber | string |
None. |
|
| Created | date |
None. |
|
| Source | string |
None. |
|
| FulfillmentMethod | string |
None. |
|
| Reference | string |
None. |
|
| OrderNumber | string |
None. |
|
| Status | string |
None. |
|
| DeliveryAddress | DeliveryAddress |
None. |
|
| CustomerId | globally unique identifier |
None. |
|
| Total | decimal number |
None. |
Response Formats
application/json, text/json
[
{
"Id": "582c8c4f-c83e-4bec-8585-0c31edf93da3",
"ReceiptNumber": "sample string 2",
"Created": "2025-11-21T14:57:24.3809301+00:00",
"Source": "sample string 4",
"FulfillmentMethod": "sample string 5",
"Reference": "sample string 6",
"OrderNumber": "sample string 7",
"Status": "sample string 8",
"DeliveryAddress": {
"CountryCode": "sample string 1",
"Locality": "sample string 2",
"StateCode": "sample string 3",
"PostalCode": 1,
"PostOfficeBoxNumber": "sample string 4",
"StreetAddress1": "sample string 5",
"StreetAddress2": "sample string 6"
},
"CustomerId": "fb1935f0-4c8d-47f4-8b8c-aff9869b059a",
"Total": 10.1
},
{
"Id": "582c8c4f-c83e-4bec-8585-0c31edf93da3",
"ReceiptNumber": "sample string 2",
"Created": "2025-11-21T14:57:24.3809301+00:00",
"Source": "sample string 4",
"FulfillmentMethod": "sample string 5",
"Reference": "sample string 6",
"OrderNumber": "sample string 7",
"Status": "sample string 8",
"DeliveryAddress": {
"CountryCode": "sample string 1",
"Locality": "sample string 2",
"StateCode": "sample string 3",
"PostalCode": 1,
"PostOfficeBoxNumber": "sample string 4",
"StreetAddress1": "sample string 5",
"StreetAddress2": "sample string 6"
},
"CustomerId": "fb1935f0-4c8d-47f4-8b8c-aff9869b059a",
"Total": 10.1
}
]