Retrieve a detailed price breakdown for a given reservation, including VAT, applicable taxes, and fees, per each room the guest booked.
- Mock (schema only)https://developers.booking.com/_mock/connectivity/docs/openapispecs/payments-api/payments-api-specification/connectivity-payments/reservations/{reservation-id}/breakdown
- Test using live endpointhttps://payments-api.booking.com/connectivity-payments/reservations/{reservation-id}/breakdown
curl -i -X GET \
'https://developers.booking.com/_mock/connectivity/docs/openapispecs/payments-api/payments-api-specification/connectivity-payments/reservations/{reservation-id}/breakdown' \
-H 'Authorization: Bearer <your_token>' \
-H 'accept-version: string'Response
{ "meta": { "ruid": "string" }, "data": { "reservation_id": "string", "property_id": "string", "payout_type": "string", "payment_tags": [ … ], "total_price_of_reservation": { … }, "partner_payout": { … }, "price_breakdown": [ … ] }, "errors": [], "warnings": [] }