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            

\n For more details on how the API responds to errors please check our documentation on \n Error Handling." provider: hetras_certification method: PATCH path: "/api/booking/v0/bookings/{confirmationId}/reservations/{reservationNumber}" encoding: json input: { type: "object" properties: { "App-Id": { type: "string" } "App-Key": { type: "string" } confirmationId: { type: "string" } reservationNumber: { type: "string" } } required: ["App-Id", "App-Key", "confirmationId", "reservationNumber"] additionalProperties: false } output: { type: "object" additionalProperties: true } }