Resource Objects
  • 14 Mar 2025
  • 8 Minutes to read
  • Dark
    Light

Resource Objects

  • Dark
    Light

Article summary

đź“Ś Mandatory Fields
Note that the order object must include all its corresponding mandatory fields; the mandatory fields are highlighted in bold in the tables below.

General

PersonObject

KeyTypeAllowed ValuesDescription
idIntegerNon-negative, starting at 0Traveler’s index in the list
first_nameString

Any characters, except the below list

Traveler’s first name
last_nameString

Any characters, except the below list

Traveler’s last name
date_of_birthStringMM/DD/YYYYTraveler’s date of birth in the specified format
loyaltyObjectLoyaltyObjectContainer for loyalty information


⚠️Not allowed values for first_name and last_name

Any unicode letter category

~
#
;
%
+
|
/
,
@
$
<
^
=
\
:

Example:

{
  "id": 0,
  "first_name": "Arthur",
  "last_name": "Davis",
  "date_of_birth": "04/07/1963"
}


LoyaltyObject

Note: This object is exclusively for use in Travelers and its purpose is to specify rewards or loyalty programs.

KeyTypeAllowed ValuesDescription
member_idStringAnyTraveler's loyalty account number
nameStringAnyName of the merchant's loyalty program
typeStringAnyThe currency of the actual loyalty program. Specify “points”, “miles” or other relevant value
tier_levelStringAnyThe traveler's specific loyalty level
tier_expirationStringAnyDate the loyalty tier expires
cobrand_cardholderStringAnyName of the co-branded credit card program
date_last_activeStringMM/DD/YYYYDate of the member's most recent loyalty activity.
points_earnedIntegerAny numberPoints/miles earned for this trip
loyalty_rewardsIntegerAny NumberPoints/miles balance

 

Example:  Travelers booking using a loyalty card.

 {
   "id": 0,
   "first_name": "Arthur",
   "last_name": "Davis",
   "date_of_birth": "04/07/1963",
   "loyalty": {
     "member_id": "FF287122",
     "name": "My Miles",
     "type": "travel",
     "tier_level": "Silver",
     "cobrand_cardholder": "My Points Visa",
     "date_last_active": "04/11/2028",
     "points_earned": "1565",
     "loyalty_rewards": "65250"
 }
}

CustomerContactObject

KeyTypeAllowed ValuesDescription
first_nameStringAny characters, except the below list
Customer’s first name
last_nameStringAny characters, except the below list
Customer’s last name
date_of_birthStringMM/DD/YYYYCustomer’s date of birth in the specified format
street_addressStringAnyCustomer’s first line of address
cityStringAnyCustomer’s city
regionString2-letter code e.g. NYCustomer’s state/province using the standard 2-letter code
countryString2-letter ISO 3166-2 Country Code e.g. US, CACustomer’s country using the standard 2-letter code
postal_codeString
  • Numerical (US)
  • Alpha-numerical (Canada) e.g. N2L3M6
Customer’s postal zip code
phoneString10 digit number, no special characters.Customer’s phone number
emailStringEmail format (domain)Customer’s email
⚠️Not allowed values for first_name and last_name

Any unicode letter category

~
#
;
%
+
|
/
,
@
$
<
^
=
\
:

Example:

{
  "first_name": "Arthur",
  "last_name": "Davis",
  "date_of_birth": "04/07/1963",
  "street_address": "1013 Weda Cir",
  "city": "Mayfield",
  "region": "KY",
  "country": "US",
  "postal_code": "99999",
  "phone": "5555552478",
  "email": "arthur@uplift.com"
}


AddOnObject

KeyTypeAllowed ValuesDescription
idStringAny, ensure UniqueAdd on product identifier (partner specific)
nameStringAnyAdd on product name
priceIntegerNon-negative, in CentsAdd on product price

Example:

{
  "id": "0",
  "name": "Priority Boarding",
  "price": 5000
}


InsuranceObject

KeyTypeAllowed ValuesDescription
idStringAny, ensure UniqueInsurance identifier (partner specific)
types[ String ]
  • cancellation
  • travel
  • bankruptcy
Insurance type
priceIntegerNon-negative, in CentsInsurance price

Example:

{
  "id": "0",
  "types": ["cancellation"],
  "price": 10000
}


AddressObject

KeyTypeAllowed ValuesDescription
street_addressStringAnyStreet address
cityStringAnyCity name
regionString2-letter code e.g. NYState/province of property using the standard 2-letter code
countryString2-letter ISO 3166-2 Country Code e.g. US, CACountry of property using the standard 2-letter code
postal_codeString
  • Numerical (US)
  • Alpha-numerical (Canada) e.g. N2L3M6
Postal code of property

Example:

{
  "street_address": "1452 Rental Ave",
  "city": "Mayfield",
  "region": "KY",
  "country": "US",
  "postal_code": "99999"
}


PointObject

KeyTypeAllowed ValuesDescription
points_usedIntegerNon-negativeNumber of points used
original_order_amountIntegerNon-negative, in CentsOriginal order amount

Example:

 {
   "points_used": 100,
   "original_order_amount": 10000
 } 


CampaignObject

KeyTypeAllowed ValuesDescription
codeStringAnyName of the campaign
orderIntegerAnyIf multiple campaigns are running, this field determines what order to consider them in.

Example:

{
  "code": "ABC",
  "order": 1
}

Air-Specific

AirReservationObject

KeyTypeAllowed ValuesDescription
airline_nameStringAny e.g. Air IndiaFull name of airline (highly recommended for third-party providers) 
originString3-letter IATA code e.g. Toronto Pearson: YYZInitial departure airport using the IATA 3-letter code
destinationString3-letter IATA code e.g. Toronto Pearson: YYZFinal arrival airport using the IATA 3-letter code 
trip_typeString
  • oneway
  • roundtrip
  • open_jaw
Type of trip
itinerary[ AirItineraryObject ]AirItineraryObjectItinerary details for the trip
insurance[ InsuranceObject ]InsuranceObjectInsurance details

Example (One Way):

{
  "airline_name": "Air India",
  "origin": "MIA",
  "destination": "JFK",
  "trip_type": "oneway",
  "itinerary": [
    {
      "departure_apc": "MIA",
      "departure_time": "20271223",
      "arrival_apc": "JFK",
      "arrival_time": "20271224",
      "fare_class": "Economy",
      "carrier_code": "NF",
      "supplier": "air canada"
    }
  ],
  "insurance": [
    {
      "id": "0",
      "types": ["cancellation"],
      "price": 10000
    }
  ]
}


Example (Round Trip):

{
  "airline_name": "Air India",
  "origin": "MIA",
  "destination": "JFK",
  "trip_type": "roundtrip",
  "itinerary": [
    {
      "departure_apc": "MIA",
      "departure_time": "20271223",
      "arrival_apc": "JFK",
      "arrival_time": "20271224",
      "fare_class": "Economy",
      "carrier_code": "NF",
      "supplier": "air canada"
    },
    {
      "departure_apc": "JFK",
      "departure_time": "20271228",
      "arrival_apc": "MIA",
      "arrival_time": "202712228",
      "fare_class": "Economy",
      "carrier_code": "NF",
      "supplier": "air canada"
    }
  ],
  "insurance": [
    {
      "id": "0",
      "types": ["cancellation"],
      "price": 10000
    }
  ]
}


AirItineraryObject

KeyTypeAllowed ValuesDescription
departure_apcString3-letter IATA code e.g. Toronto Pearson: YYZDeparture airport code using the IATA 3-letter code 
departure_timeStringYYYYMMDDDeparture date in the specified format
arrival_apcString3-letter IATA code e.g. Toronto Pearson: YYZArrival airport code using the IATA 3-letter code 
arrival_timeStringYYYYMMDDScheduled arrival date in the specified format
fare_classStringAnyType of fare class (e.g. first class, economy)
carrier_codeString2-letter IATA code e.g. Air India: AIAirline code using the IATA 2-letter code 
supplierStringAnySupplier name - this is primarily used in the case of third-party sellers; this is where the name of the airline would be placed

Example:

{
  "departure_apc": "MIA",
  "departure_time": "20271223",
  "arrival_apc": "JFK",
  "arrival_time": "20271224",
  "fare_class": "Economy",
  "carrier_code": "NF",
  "supplier": "air canada"
 }


Hotel-Specific

HotelReservationObject

KeyTypeAllowed ValuesDescription
hotel_nameStringAnyName of hotel
brandStringAnyBrand of hotel defined by partner
property_codeStringAnyProperty code defined by partner
supplierStringAnySupplier name - this is primarily used in the case of third-party sellers; this is where the name of the airline would be placed
reservation_typeString
  • pre_paid
  • standard
Use pre_paid for any rate where the hotel will collect the payment in full at or shortly after the booking is made. Use standard for anything else, e.g., pay at hotel.
has_depositBoolean
  • false
  • true
Set to true if the payment is not collected in full in a single transaction, e.g., one night charged at booking and the rest is collected at the hotel during travel. Use false when the payment is collected in one single transaction, at any point between the booking and the travel date.
number_of_roomsIntegerPositiveNumber of rooms in reservation
room_typeStringAnyType of rooms booked
check_inStringYYYYMMDDDate of check in using the specified format
check_outStringYYYYMMDDDate of check out using the specified format
addressAddressObjectAddressObjectAddress of property
insurance[ InsuranceObject ]InsuranceObjectInsurance details if purchased by customer

Example:

{
  "hotel_name": "Snooze Inn",
  "brand": "Snooze Corp",
  "property_code": "SNINN",
  "supplier": "Snooze Deluxe",
  "reservation_type": "pre_paid",
  "has_deposit": false,
  "number_of_rooms": 1,
  "room_type": "deluxe suite",
  "check_in": "20271224",
  "check_out": "20271225",
  "address": {
    "street_address": "1015 Travel Ave",
    "city": "New York",
    "region": "NY",
    "country": "US",
    "postal_code": "10001"
  },
  "insurance": [
    {
      "id": "0",
      "types": ["cancellation"],
      "price": 10000
    }
  ]
}


Cruise-Specific

CruiseReservationObject

KeyTypeAllowed ValuesDescription
cruise_lineStringAnyCruise line name
brandStringAnyBrand name - this is primarily used in the case of third-party sellers; this is where the name of the airline would be placed
ship_codeStringAnyShip code
voyage_idStringAnySpecific voyage identifier
embark_dateStringYYYYMMDDDate of embark (start)
disembark_dateStringYYYYMMDDDate of disembark (end)
cruise_durationIntegerNon-negativeCruise duration in days
itinerary[ CruiseItineraryObject ]CruiseItineraryObjectDetailed information about Itinerary
rooms[ RoomObject ]RoomObjectRooms booked in reservation
insurance[ InsuranceObject ]InsuranceObjectInsurance details if purchased by customer

Example:

{
  "cruise_line": "Wavy Cruise Lines",
  "brand": "Wavy South USA",
  "ship_code": "WAV",
  "voyage_id": "WAV_MIA_FPO_20271201_20271203",
  "embark_date": "20271205",
  "disembark_date": "20271201",
  "cruise_duration": 4,
  "itinerary": [
    {
      "departure_port": "MIA",
      "departure_date": "20271201",
      "arrival_port": "FPO",
      "arrival_date": "20271203",
      "activities": [
        {
          "name": "Swimming with Dolphins",
          "date": "20271203",
          "price": 10000
        }
      ]
    }
  ],
  "rooms": [
    {
      "cabin_type": "Balcony",
      "deck_number": "9",
      "state_room_type": "Junior Suite",
      "state_room_number": "9207",
      "berthed_type": "2 full beds",
      "dining_service": "Free Style"
    }
  ],
  "insurance": [
    {
     "id": "0",
     "types": ["cancellation"],
     "price": 10000
    }
  ]
}


CruiseItineraryObject

KeyTypeAllowed ValuesDescription
depature_portStringAnyDeparture port name
depature_dateStringYYYYMMDDDeparture date using the specified format
arrival_portStringAnyArrival port name
arrival_dateStringYYYYMMDDScheduled arrival date using the specified format
activities[ ActivityObject ]ActivityObjectActivities booked part of reservation

Example:

{
  "departure_port": "MIA",
  "departure_date": "20271201",
  "arrival_port": "FPO",
  "arrival_date": "20271203",
  "activities": [
    {
      "name": "Swimming with Dolphins",
      "date": "20271203",
      "price": 10000
    }
  ]
}


ActivityObject

KeyTypeAllowed ValuesDescription
nameStringAnyName of activity
dateStringYYYYMMDDDate of activity using the specified format
priceIntegerNon-negative, in CentsPrice of activity

Example:

{
  "name": "Swimming with Dolphins",
  "date": "20271203",
  "price": 10000
}


RoomObject

KeyTypeAllowed ValuesDescription
cabin_typeStringAnyCabin type
deck_numberStringAnyStateroom’s deck number
state_room_typeStringAnyStateroom type
state_room_numberStringAnyStateroom number
berthed_typeStringAnyBed arrangement in cabin
dining_serviceStringAnyDining service if applicable

Example:

{
  "cabin_type": "Balcony",
  "deck_number": "9",
  "state_room_type": "Junior Suite",
  "state_room_number": "9207",
  "berthed_type": "2 full beds",
  "dining_service": "Free Style"
}


Retail-Specific

OrderLineObject

KeyTypeAllowed ValuesDescription
nameStringAnyName of product
skuStringAnySKU of product
referenceStringAnyAny reference information - use this field for any additional information to be captured for reporting
merchant_dataStringAnyAdditional merchant data - use this field for any additional information to be captured for reporting
unit_priceIntegerNon-negative, in CentsUnit price of item being purchased
quantityIntegerNon-negativeQuantity of unit being purchased
quantity_unitStringAbbreviated e.g. kgQuantity unit of product (measurement)

Example:

{
  "name": "Electric Guitar",
  "sku": "1254865",
  "reference": "el_guitar_1254865",
  "merchant_data": "limited edition",
  "unit_price": 30000,
  "quantity": 1,
  "quantity_unit": "unit"
}


Event-Ticket-Specific

EventTicketObject

KeyTypeAllowed ValuesDescription
event_nameStringAnyName of event
venue_nameStringAnyName of event’s venue
reference_idStringAnyReference identifier used for your internal tracking
typeStringAnyEvent type
remarksStringAnyAny additional information - use this field for any additional information to be captured for reporting
unit_priceIntegerNon-negative, in CentsPrice of tickets per unit
quantityIntegerNon-negativeQuantity of tickets purchased
start_dateStringYYYYMMDDStart date of event using the specified format
end_dateStringYYYYMMDDEnd date of event using the specified format
locationAddressObjectAddressObjectLocation of venue
insurance[ InsuranceObject ]InsuranceObjectEvent ticket’s insurance details

Example:

{
  "event_name": "Mayfield's Annual Music Festival",
  "venue_name": "Events Park",
  "reference_id": "mayfield_annual_2027",
  "type": "music",
  "remarks": "Tentative due to Covid",
  "unit_price": 15000,
  "quantity": 1,
  "start_date": "20271201",
  "end_date": "20271202",
  "location": {
    "street_address": "2525 Events Park Cir",
    "city": "Mayfield",
    "region": "KY",
    "country": "US",
    "postal_code": "99999"
  },
  "insurance": [
    {
      "id": "0",
      "types": ["cancellation"],
      "price": 10000
    }
  ]
}


Rental-Specific

RentalObject

KeyTypeAllowed ValuesDescription
agencyStringAnyName of rental agency
typeStringAnyType/item of rental
reference_idStringAnyRental agency specific reference id
remarksStringAnyAny additional information - use this field for any additional information to be captured for reporting
unit_priceIntegerNon-negative, in CentsPrice of rentals per unit
quantityIntegerNon-negativeQuantity of units being rented
start_dateStringYYYYMMDDStart date of rental using the specified format
end_dateStringYYYYMMDDEnd date of rental using the specified format
pickup_locationAddressObjectAddressObjectPick up location for rentals
dropoff_locationAddressObjectAddressObjectDrop off location for rentals
insurance[ InsuranceObject ]InsuranceObjectRental product's insurance details

Example:

{
  "agency": "Car Rentals of Mayfield",
  "type": "2027 Toyota Camry",
  "reference_id": "xshfkwul",
  "remarks": "Black Friday Promotion",
  "unit_price": 1200000,
  "quantity": 1,
  "start_date": "20271205",
  "end_date": "20271206",
  "pickup_location": {
    "street_address": "1452 Rental Ave",
    "city": "Mayfield",
    "region": "KY",
    "country": "US",
    "postal_code": "99999"
  },
  "dropoff_location": {
    "street_address": "1452 Rental Ave",
    "city": "Mayfield",
    "region": "KY",
    "country": "US",
    "postal_code": "99999"
  },
  "insurance": [
    {
      "id": "0",
      "types": ["cancellation"],
      "price": 10000
    }
  ]
}


Passes-Subscription-Specific

PassesSubscriptionObject

KeyTypeAllowed ValuesDescription
purchase_siteStringAnyWebsite where the pass/subscription was purchased
nameStringAnyPass/Subscription name
typeString
  • monthly
  • annual
  • day
Type of pass/subscription
renewBoolean
  • false
  • true
Automatic renewal
upgradedBoolean
  • false
  • true
Purchase is an upgrade for the current pass/subscription
unit_priceIntegerNon-negative, in CentsPrice of pass/subscription per unit
quantityIntegerNon-negativeQuantity of passes/subscriptions
expire_dateStringYYYYMMDDExpiration date ofpass/subscription using the specified format
active_dateStringYYYYMMDDActivation date ofpass/subscription using the specified format
renew_dateStringYYYYMMDDRenewal date ofpass/subscription using the specified format
recipients[ PersonObject ]PersonObjectSubscriber personal information

Example:

{
"purchase_site": "www.uplift.com",
  "name": "Uplift Music",
  "type": "annual",
  "renew": true,
  "upgraded": false,
  "unit_price": 99400,
  "quantity": 1,
  "expire_date": "20280907",
  "active_date": "20270907",
  "renew_date": "20280907",
  "recipients": [
    {
      "id": "0",
      "first_name": "Arthur",
      "last_name": "Davis",
      "date_of_birth": "04/07/1963"
    }
  ]
}

Was this article helpful?