Search all orders for one or more locations.
POST
/v2/orders/search
Search all orders for one or more locations.
Orders include all sales, returns, and exchanges regardless of how or when they entered the Square Ecosystem (e.g. Point of Sale, Invoices, Connect APIs, etc).
SearchOrders requests need to specify which locations to search and define a SearchOrdersQuery
object which controls how to sort or filter the results. Your SearchOrdersQuery can:
Set filter criteria. Set sort order. Determine whether to return results as complete Order objects, or as OrderEntry objects.
Note that details for orders processed with Square Point of Sale while in offline mode may not be transmitted to Square for up to 72 hours. Offline orders have a created_at
value that reflects the time the order was created, not the time it was subsequently transmitted to Square.
The location IDs for the orders to query. All locations must belong to the same merchant.
Min: 1 location IDs.
Max: 10 location IDs.
A pagination cursor returned by a previous call to this endpoint. Provide this to retrieve the next set of results for your original query. See Pagination for more information.
Query conditions used to filter or sort the results. Note that when fetching additional pages using a cursor, the query must be equal to the query used to fetch the first page of results.
Maximum number of results to be returned in a single page. It is possible to receive fewer results than the specified limit on a given page.
Default: 500
Boolean that controls the format of the search results. If true
, SearchOrders will return OrderEntry
objects. If false
, SearchOrders will return complete Order objects.
Default: false
.
List of OrderEntries that fit the query conditions. Populated only if return_entries
was set to true
in the request.
List of Order objects that match query conditions. Populated only if return_entries
in the request is set to false
.
The pagination cursor to be used in a subsequent request. If unset, this is the final response. See Pagination for more information.
Errors encountered during the search.