Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.17 KB

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

File metadata and controls

39 lines (30 loc) · 1.17 KB

Bulk Delete Booking Custom Attributes Response

Represents a BulkDeleteBookingCustomAttributes response, which contains a map of responses that each corresponds to an individual delete request.

Structure

Bulk Delete Booking Custom Attributes Response

Fields

Name Type Tags Description
values Dict Str Booking Custom Attribute Delete Response Optional A map of responses that correspond to individual delete requests. Each response has the
same ID as the corresponding request and contains booking_id and errors field.
errors List Error Optional Any errors that occurred during the request.

Example (as JSON)

{
  "errors": [],
  "values": {
    "id1": {
      "booking_id": "N3NCVYY3WS27HF0HKANA3R9FP8",
      "errors": []
    },
    "id2": {
      "booking_id": "SY8EMWRNDN3TQDP2H4KS1QWMMM",
      "errors": []
    },
    "id3": {
      "booking_id": "SY8EMWRNDN3TQDP2H4KS1QWMMM",
      "errors": []
    }
  }
}