Change Summary
New field timeZoneUTC added to the cancellationPolicies node
To enhance precision in cancellation windows, we’ve introduced the timeZoneUTC field to complement the existing timeZone attribute in the cancellationPolicies node.
See Cancellation Policies for more details.
Previous
"cancellationPolicies": [
{
"startWindowTime": "2022-05-30 16:00:00",
"endWindowTime": "2022-06-01 16:00:00",
"cancellationCharge": 312.00,
"currency": "USD",
"timeZone": "America/New_York"
}
]
New
"cancellationPolicies": [
{
"startWindowTime": "2022-05-30 16:00:00",
"endWindowTime": "2022-06-01 16:00:00",
"cancellationCharge": 312.00,
"currency": "USD",
"timeZone": "America/New_York",
"timeZoneUTC": "-05:00"
}
]
Action Required: Update your integration to retrieve and utilize the timeZoneUTC attribute for improved accuracy in cancellations.