Request

How to cancel a booking that your created via the API in the supplier system

Booking Cancel Example

<?xml version="1.0" encoding="UTF-8"?>
<BookingCancelRequest xmlns="https://api.zaui.io/api/01">
	<ApiKey>xxxxxxxxxxxxxxxxxxxxxxx</ApiKey>
	<ResellerId>2005</ResellerId>
	<SupplierId>200</SupplierId>
	<ExternalReference>10051374722992616</ExternalReference>
	<Timestamp>1577121674745</Timestamp>
	<BookingReference>999999999</BookingReference>
	<SupplierConfirmationNumber>1635213</SupplierConfirmationNumber>
	<CancelDate>2020-10-21</CancelDate>
 	<Author>Customer Service</Author>
	<Reason>No longer traveling</Reason>
	<SupplierNote>Refunded Customer</SupplierNote>
</BookingCancelRequest>

Booking Cancel Request Fields

The booking cancellation request allows your implementation to cancel previously made bookings, successfully created through your implementation, directly into the supplier system.

Last updated