Check Prebooking Resource & Option Availability
Check Prebooking Resource Availability#
For prebooking resources, use /resources/prebookings/availability to retrieve detailed availability and pricing information for resources that match the specified search criteria.When an membershipId or ePassId is provided, the corresponding availability will be reserved. If the same membershipId or ePassId is sent again, the previously reserved availability will be released, and new availability will be reserved in its place.
When neither membershipId nor ePassId is not provided, the API will only return availability information without reserving the availability.
Check Prebooking Resource Availability - Request
{
"ePassId": "8888000066668888",
"module": 1,
"resourceId": "N00001",
"prebookingDate": "2025-10-01T10:30",
"adultCount": 1,
"childCount": 0
}
The prebookingToken will only be returned if the timeslot is available. This token is required to proceed with order creation.
Based on program and resource settings, dynamic pricing for specific resources may be returned according to the search criteria.
Check Prebooking Resource Availability - Response
{
"available": true,
"prebookingToken": "85c69b8e790befc7e94870ec269c3f1d",
"validUntil": 1923263999,
"price": {
"dynamicPrice": true,
"currency": "USD",
"adultRate": "6.00",
"childRate": "6.00"
}
}
Check Prebooking Option Availability#
For resource that offer multiple prebookable options, such as classes under Fitness resource or different data packages under eSIM resources, use /resources/options/prebookings/availability to retrieve detailed availability and pricing information for each available option based on the specified search criteria.Check Prebooking Option Availability - Request
{
"ePassId": "1788000066668888",
"module": 7,
"resourceId": "F00001",
"optionId":"F00001-dayPass",
"adultCount": 1,
"childCount": 0
}
The prebookingToken will only be returned if the timeslot is available. This token is required to proceed with order creation.
Based on program and resource settings, dynamic pricing for specific resources may be returned according to the search criteria.
Check Prebooking Option Availability - Response
{
"available": true,
"prebookingToken": "85c69b8e790befc7e94870ec269c3f1d",
"validUntil": 1923263999,
"price": {
"dynamicPrice": true,
"currency": "USD",
"adultRate": "6.00",
"childRate": "6.00"
}
}
Modified at 2026-01-19 07:16:53