Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 925 Bytes

search-terminal-actions-request.md

File metadata and controls

33 lines (25 loc) · 925 Bytes

Search Terminal Actions Request

Structure

SearchTerminalActionsRequest

Fields

Name Type Tags Description
query TerminalActionQuery | undefined Optional -
cursor string | undefined 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 number | undefined 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"
      }
    },
    "sort": {
      "sort_order": "DESC"
    }
  }
}