Skip to main content
POST
/
guests
/
{guestId}
/
loyalty-points
/
redeem
Redeem a guest's loyalty points
curl --request POST \
  --url https://api.liteapi.travel/v3.0/guests/{guestId}/loyalty-points/redeem \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "points": 100,
  "currency": "USD"
}
'
{
  "data": {
    "voucherCode": "0193f986",
    "userID": 633,
    "guestID": 1,
    "discountType": "fixed_amount",
    "discountValue": 90.95,
    "minimumSpend": 0,
    "maximumDiscountAmount": 9,
    "currency": "USD",
    "validityStart": "2026-07-24",
    "validityEnd": "2026-12-24",
    "usages": 0,
    "usagesLimit": 1,
    "status": "active",
    "termsAndConditions": "",
    "category": "redemption",
    "createdAt": "2026-07-24T16:36:19.820824Z",
    "updatedAt": "2026-07-24T20:36:20.002+04:00",
    "deletedAt": null
  }
}

Authorizations

X-API-Key
string
header
required

Path Parameters

guestId
integer
required

Numeric ID of the guest to fetch

Body

application/json
points
integer
required

Amount of points to redeem. 10 points = $1 USD.

Example:

100

currency
string
required

Currency in which the voucher value will be calculated.

Example:

"USD"

Response

OK

data
object