Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 828 Bytes

bulk-delete-booking-custom-attributes-request.md

File metadata and controls

28 lines (19 loc) · 828 Bytes

Bulk Delete Booking Custom Attributes Request

Represents a BulkDeleteBookingCustomAttributes request.

Structure

BulkDeleteBookingCustomAttributesRequest

Fields

Name Type Tags Description
values Record<string, BookingCustomAttributeDeleteRequest> Required A map containing 1 to 25 individual Delete requests. For each request, provide an
arbitrary ID that is unique for this BulkDeleteBookingCustomAttributes request and the
information needed to delete a custom attribute.

Example (as JSON)

{
  "values": {
    "key0": {
      "booking_id": "booking_id4",
      "key": "key0"
    }
  }
}