List Orders
Orders index
Get a list of orders
Query Parameters
Parameter | Details |
---|---|
storeId
| integer storeId (integer) or referenceKey (prefixed with key=) Examples:
|
filters[orderType] | string Optional storeId Example: pickupCollect |
filters[orderStatus] | string Optional Order status Example: accepted |
filters[orderItemStatus] | string Optional OrderItem status Example: accepted |
filters[date] | string Optional Order Date (YYYY-MM-DD) Example: 2023-06-20 |
sort | string Optional Sort (defaults to Order createdAt) Example: createdAt |
sortDir | string Optional Sort direction (defaults desc) Example: desc |
page | integer Pagination |
perPage | integer Pagination, items per page |
Responses
200
successful operation
application/json
Success
Array of object
object
object
401
Unauthorized
Error
422
Unprocessable Entity
application/json
Error
GET
Request samples
Available Filters
filters.s
- type: string
- searches in
orderId
andorderKey
filters.orderScope
- type: string
- options
incomingPackages
openFulfillment
readyForPickup
filters.orderType
- type: string
- options
pickupCollect
fulfillment
(subject to change toshippingFulfillment
)pickupFulfillment
filters.orderStatus
- type: string
- options
confirmed
inFulfillment
readyForPickup
closed
filters.orderItemStatus
- type: string
- options
confirmed
delegated
waitingForShipment
inPicking
picked
readyForShipping
shipped
readyForPickup
pickedUp
canceled
filters.date
- type: date (
YYYY-MM-DD
)
- type: date (
Sorting
sort
- options
orderId
createdAt
- options
sortDir
- options
asc
desc
- options
Get order count by their scope
Provided scopes can be one or multiple.
scopes
- options
incomingPackages
openFulfillment
readyForPickup
- options
Get order count by scope
Get the count of orders grouped by their scope (incomingPackages, openFulfillment, readyForPickup)
Query Parameters
Parameter | Details |
---|---|
scopes[scopeName]
| string Available scopeNames: incomingPackages, openFulfillment, readyForPickup Example: incomingPackages |
Responses
200
successful operation
application/json
Success
incomingPackages
number
Example:
12
openFulfillment
number
Example:
84
readyForPickup
number
Example:
2
401
Unauthorized
Error
422
Unprocessable Entity
application/json
Error
GET