action hetras_certification_bookings_patch {
label: "Partially updates a reservation."
description: "The hetras API is using this Patch Specification
\n to partially update an existing resource. Currently this call allows to update the following fields:
\n external_id, market_code, channel_code, subchannel_code, guarantee_type, comment, addon_services, labels, guests, contact and company.
\n
\n A request example:
\n [
\n {
\n \"op\": \"replace\", \"path\": \"/addon_services\", \"value\": [\"BREAKFAST\", \"PARKING\"]
\n },
\n {
\n \"op\": \"add\", \"path\": \"/labels/-\", \"value\": \"MOBILE\"
\n },
\n {
\n \"op\": \"replace\", \"path\": \"/guests/SHOW-1234\", \"value\": { \"customer_id\": \"SHOW-1234\", \"primary\": false }
\n },
\n {
\n \"op\": \"add\", \"path\": \"/guests/-\", \"value\": { \"customer_id\": \"SHOW-5678\", \"primary\": true }
\n }
\n ]
\n