Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.12 KB

create-loyalty-reward-response.md

File metadata and controls

33 lines (24 loc) · 1.12 KB

Create Loyalty Reward Response

A response that includes the loyalty reward created.

Structure

CreateLoyaltyRewardResponse

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-01T21:49:54Z",
    "id": "a8f43ebe-2ad6-3001-bdd5-7d7c2da08943",
    "loyalty_account_id": "5adcb100-07f1-4ee7-b8c6-6bb9ebc474bd",
    "order_id": "RFZfrdtm3mhO1oGzf5Cx7fEMsmGZY",
    "points": 10,
    "reward_tier_id": "e1b39225-9da5-43d1-a5db-782cdd8ad94f",
    "status": "ISSUED",
    "updated_at": "2020-05-01T21:49:54Z"
  }
}