Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 1.46 KB

retrieve-loyalty-reward-response.md

File metadata and controls

48 lines (39 loc) · 1.46 KB

Retrieve Loyalty Reward Response

A response that includes the loyalty reward.

Structure

RetrieveLoyaltyRewardResponse

Fields

Name Type Tags Description
errors Error[] | undefined Optional Any errors that occurred during the request.
reward LoyaltyReward | undefined Optional Represents a contract to redeem loyalty points for a reward tier discount. Loyalty rewards can be in an ISSUED, REDEEMED, or DELETED state.
For more information, see Manage loyalty rewards.

Example (as JSON)

{
  "reward": {
    "created_at": "2020-05-08T21:55:42Z",
    "id": "9f18ac21-233a-31c3-be77-b45840f5a810",
    "loyalty_account_id": "5adcb100-07f1-4ee7-b8c6-6bb9ebc474bd",
    "points": 10,
    "redeemed_at": "2020-05-08T21:56:00Z",
    "reward_tier_id": "e1b39225-9da5-43d1-a5db-782cdd8ad94f",
    "status": "REDEEMED",
    "updated_at": "2020-05-08T21:56:00Z",
    "order_id": "order_id4"
  },
  "errors": [
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "MAP_KEY_LENGTH_TOO_LONG",
      "detail": "detail6",
      "field": "field4"
    },
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "MAP_KEY_LENGTH_TOO_LONG",
      "detail": "detail6",
      "field": "field4"
    }
  ]
}