Rentals
Allows for rental features to be accessible via API
Rental Product
{
//... rest of the product object
"isRental": true,
"options": [
{
//... rest of the option object
"rentalDurations": [
{
"id": "1.0_day",
"title": "1 day",
"shortDescription": null,
"durationAmount": 1.0,
"durationUnit": "day"
},
{
"id": "2.0_day",
"title": "2 days",
"shortDescription": null,
"durationAmount": 2.0,
"durationUnit": "day"
},
{
"id": "3.0_day",
"title": "3 days",
"shortDescription": null,
"durationAmount": 3.0,
"durationUnit": "day"
}
]
}
]
}Field
Description
Rental Availability
Rental Booking
Last updated