Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.12 KB

search-terminal-checkouts-request.md

File metadata and controls

37 lines (29 loc) · 1.12 KB

Search Terminal Checkouts Request

Structure

SearchTerminalCheckoutsRequest

Fields

Name Type Tags Description Getter
Query TerminalCheckoutQuery Optional - TerminalCheckoutQuery getQuery()
Cursor String Optional A pagination cursor returned by a previous call to this endpoint.
Provide this cursor to retrieve the next set of results for the original query.
See Pagination for more information.
String getCursor()
Limit Integer Optional Limits the number of results returned for a single request.
Constraints: >= 1, <= 100
Integer getLimit()

Example (as JSON)

{
  "limit": 2,
  "query": {
    "filter": {
      "status": "COMPLETED",
      "device_id": "device_id0",
      "created_at": {
        "start_at": "start_at4",
        "end_at": "end_at8"
      }
    },
    "sort": {
      "sort_order": "DESC"
    }
  },
  "cursor": "cursor4"
}