Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1.02 KB

search-terminal-actions-request.md

File metadata and controls

38 lines (30 loc) · 1.02 KB

Search Terminal Actions Request

Structure

SearchTerminalActionsRequest

Fields

Name Type Tags Description
Query TerminalActionQuery Optional -
Cursor string Optional A pagination cursor returned by a previous call to this endpoint.
Provide this to retrieve the next set of results for the original query.
See Pagination for more
information.
Limit int? Optional Limit the number of results returned for a single request.
Constraints: >= 1, <= 100

Example (as JSON)

{
  "limit": 2,
  "query": {
    "filter": {
      "created_at": {
        "start_at": "2022-04-01T00:00:00.000Z",
        "end_at": "end_at8"
      },
      "device_id": "device_id0",
      "status": "status6",
      "type": "SAVE_CARD"
    },
    "sort": {
      "sort_order": "DESC"
    }
  },
  "cursor": "cursor4"
}