Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Inbound | POST  | /orders/search

Summary Copy to clipboard

  • This API

...

  • allows the POS system to fetch order details.

  • The POS system can fetch orders of different statuses from SFS. The useful order statuses are ACCEPTED, PARTIALLY_ACCEPTED, PICKING_STARTED, and PICKING_COMPLETED.

  • This feature helps users quickly filter and locate orders that require attention. Users can do billing in POS based on order status.

Description

This API can be used to search the orders of a store based on these parameters:
i) locationCode
ii) eventTypes

 

Request

Code Block
languagejson
{
  "locationCode": "loc1",
  "minId": 123,
  "batchSize": 500,
  "eventTypes": [
    "OUTWARD_ORDER_COMPLETE"
  ]
}

...