<- Orders API

Orders API

All versions ->

Search orders

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.

Permissions:ORDERS_READ
Try in API Explorer
Link to section

Request body

Example code

Link to section

location_ids

string [ ]

The location IDs for the orders to query. All locations must belong to the same merchant.

Min: 1 location IDs.

Max: 10 location IDs.

Link to section

cursor

string

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.

Link to section

query

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.

Link to section

limit

integer(32-bit)

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

Link to section

return_entries

boolean

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.

Link to section

Response fields

Link to section

order_entries

List of OrderEntries that fit the query conditions. Populated only if return_entries was set to true in the request.

Link to section

orders

List of Order objects that match query conditions. Populated only if return_entries in the request is set to false.

Link to section

cursor

string

The pagination cursor to be used in a subsequent request. If unset, this is the final response. See Pagination for more information.

Link to section

errors

Errors encountered during the search.