Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 732 Bytes

search-terminal-refunds-request.md

File metadata and controls

28 lines (20 loc) · 732 Bytes

Search Terminal Refunds Request

Structure

SearchTerminalRefundsRequest

Fields

Name Type Tags Description
query TerminalRefundQuery | undefined Optional -
cursor string | undefined 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.
limit number | undefined Optional Limits the number of results returned for a single request.
Constraints: >= 1, <= 100

Example (as JSON)

{
  "limit": 1,
  "query": {
    "filter": {
      "status": "COMPLETED"
    }
  }
}