Skip to main content
GET
/
guests
/
{guestId}
/
vouchers
Fetch a guest's vouchers
curl --request GET \
  --url https://api.liteapi.travel/v3.0/guests/{guestId}/vouchers \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": 1,
      "voucher_code": "0193f948",
      "user_id": 1,
      "guest_id": 1,
      "discount_type": "fixed_amount",
      "discount_value": 0.1,
      "minimum_spend": 0,
      "maximum_discount_amount": 0,
      "currency": "USD",
      "validity_start": "2026-07-24T00:00:00+01:00",
      "validity_end": "2026-12-24T00:00:00+01:00",
      "usages": 6,
      "usages_limit": 1,
      "status": "active",
      "terms_and_conditions": "",
      "category": "",
      "created_at": "2026-07-24T19:28:49+01:00",
      "updated_at": "2026-07-24T19:28:52+01:00",
      "deleted_at": null
    },
    {
      "id": 2,
      "voucher_code": "0193f969",
      "user_id": 1,
      "guest_id": 1,
      "discount_type": "fixed_amount",
      "discount_value": 0.1,
      "minimum_spend": 0,
      "maximum_discount_amount": 0,
      "currency": "USD",
      "validity_start": "2026-07-24T00:00:00+01:00",
      "validity_end": "2026-12-24T00:00:00+01:00",
      "usages": 0,
      "usages_limit": 1,
      "status": "active",
      "terms_and_conditions": "",
      "category": "redemption",
      "created_at": "2026-07-24T20:04:14+01:00",
      "updated_at": "2026-07-24T20:04:14+01:00",
      "deleted_at": null
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Path Parameters

guestId
integer
required

Numeric ID of the guest to fetch vouchers for

Example:

1

Response

List of vouchers

data
object[]