Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

search-loyalty-rewards-request.md

File metadata and controls

30 lines (21 loc) · 1.04 KB

Search Loyalty Rewards Request

A request to search for loyalty rewards.

Structure

SearchLoyaltyRewardsRequest

Fields

Name Type Tags Description
query SearchLoyaltyRewardsRequestLoyaltyRewardQuery | undefined Optional The set of search requirements.
limit number | undefined Optional The maximum number of results to return in the response. The default value is 30.
Constraints: >= 1, <= 30
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.
For more information,
see Pagination.

Example (as JSON)

{
  "limit": 10,
  "query": {
    "loyalty_account_id": "5adcb100-07f1-4ee7-b8c6-6bb9ebc474bd",
    "status": "ISSUED"
  },
  "cursor": "cursor4"
}