Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 521 Bytes

cancel-booking-request.md

File metadata and controls

23 lines (15 loc) · 521 Bytes

Cancel Booking Request

Structure

CancelBookingRequest

Fields

Name Type Tags Description
idempotencyKey string | undefined Optional A unique key to make this request an idempotent operation.
Constraints: Maximum Length: 255
bookingVersion number | undefined Optional The revision number for the booking used for optimistic concurrency.

Example (as JSON)

{
  "idempotency_key": null,
  "booking_version": null
}