GET Companies({CompanyId})/Locations({LocationId})/SalesToFulfill?filter={filter}
Pulls Sales Order to be Fulfilled at a Location in a Company with Filtering
Information:
Base URL:
https://api.covasoft.net/pointofsale
Examples of this filterable call would be:
https://api.covasoft.net/pointofsale/Companies({CompanyId})/Locations({LocationId})/SalesToFulfill
Odata Filter Section:
SaleStatus eq 'PaidAndAwaitingCompletion'
Status eq 'ReadyForPickup' and Method eq 'Pickup'
Status eq 'ReadyForPickup' and Method eq 'Delivery'
ReceiptNumber eq '{ReceiptNumber}'
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 Sales Orders to Fulfill | integer | Required | 
| filter | The Odata filter applied to this call, see filter section above | string | None. | 
Body Parameters
None.
Response Information
Resource Description
Returns Sales Order to be fulfilled at a Location with Filtering
Collection of GetSalesOrdersToFulfillReturn| Name | Description | Type | Additional information | 
|---|---|---|---|
| Id | globally unique identifier | None. | |
| Created | date | None. | |
| Source | string | None. | |
| Method | string | None. | |
| Reference | string | None. | |
| OrderNumber | string | None. | |
| ReceiptNumber | string | None. | |
| Status | string | None. | |
| SaleStatus | string | None. | |
| Address | Address | None. | |
| Total | decimal number | None. | 
Response Formats
application/json, text/json
[
  {
    "Id": "70cf19e9-99f8-41de-ba4b-2a1321bfcd17",
    "Created": "2025-10-31T11:17:01.4120867+00:00",
    "Source": "sample string 3",
    "Method": "sample string 4",
    "Reference": "sample string 5",
    "OrderNumber": "sample string 6",
    "ReceiptNumber": "sample string 7",
    "Status": "sample string 8",
    "SaleStatus": "sample string 9",
    "Address": {
      "AddressLine1": "sample string 1",
      "AddressLine2": "sample string 2",
      "City": "sample string 3",
      "StateName": "sample string 4",
      "CountryName": "sample string 5",
      "Zip": 1,
      "Id": "0d3c92a0-b9fe-459b-91b2-05959562ded5",
      "CustomerId": "9ddd2a18-68d2-4f85-b630-a27f28fa09da",
      "AddressTypeId": 8,
      "AddressType": "sample string 9",
      "Default": true,
      "DoNotContact": true,
      "CountryCode": "sample string 12",
      "Country": "sample string 13",
      "Locality": "sample string 14",
      "StateCode": "sample string 15",
      "State": "sample string 16",
      "PostalCode": "sample string 17",
      "PostOfficeBoxNumber": "sample string 18",
      "StreetAddress1": "sample string 19",
      "Notes": "sample string 20",
      "StreetAddress2": "sample string 21",
      "Version": 22,
      "AttentionTo": "sample string 23",
      "Phone": "sample string 24",
      "Email": "sample string 25"
    },
    "Total": 10.1
  },
  {
    "Id": "70cf19e9-99f8-41de-ba4b-2a1321bfcd17",
    "Created": "2025-10-31T11:17:01.4120867+00:00",
    "Source": "sample string 3",
    "Method": "sample string 4",
    "Reference": "sample string 5",
    "OrderNumber": "sample string 6",
    "ReceiptNumber": "sample string 7",
    "Status": "sample string 8",
    "SaleStatus": "sample string 9",
    "Address": {
      "AddressLine1": "sample string 1",
      "AddressLine2": "sample string 2",
      "City": "sample string 3",
      "StateName": "sample string 4",
      "CountryName": "sample string 5",
      "Zip": 1,
      "Id": "0d3c92a0-b9fe-459b-91b2-05959562ded5",
      "CustomerId": "9ddd2a18-68d2-4f85-b630-a27f28fa09da",
      "AddressTypeId": 8,
      "AddressType": "sample string 9",
      "Default": true,
      "DoNotContact": true,
      "CountryCode": "sample string 12",
      "Country": "sample string 13",
      "Locality": "sample string 14",
      "StateCode": "sample string 15",
      "State": "sample string 16",
      "PostalCode": "sample string 17",
      "PostOfficeBoxNumber": "sample string 18",
      "StreetAddress1": "sample string 19",
      "Notes": "sample string 20",
      "StreetAddress2": "sample string 21",
      "Version": 22,
      "AttentionTo": "sample string 23",
      "Phone": "sample string 24",
      "Email": "sample string 25"
    },
    "Total": 10.1
  }
]