Update observations of a booking
curl --request PATCH \
--url https://channels-service-alpha.fourvenues.com/bookings/{bookingId}/observations \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '
{
"observations_referral": "This client is a VIP. Please give him a good table."
}
'import requests
url = "https://channels-service-alpha.fourvenues.com/bookings/{bookingId}/observations"
payload = { "observations_referral": "This client is a VIP. Please give him a good table." }
headers = {
"X-Api-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({observations_referral: 'This client is a VIP. Please give him a good table.'})
};
fetch('https://channels-service-alpha.fourvenues.com/bookings/{bookingId}/observations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://channels-service-alpha.fourvenues.com/bookings/{bookingId}/observations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'observations_referral' => 'This client is a VIP. Please give him a good table.'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://channels-service-alpha.fourvenues.com/bookings/{bookingId}/observations"
payload := strings.NewReader("{\n \"observations_referral\": \"This client is a VIP. Please give him a good table.\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-Api-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://channels-service-alpha.fourvenues.com/bookings/{bookingId}/observations")
.header("X-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"observations_referral\": \"This client is a VIP. Please give him a good table.\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://channels-service-alpha.fourvenues.com/bookings/{bookingId}/observations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"observations_referral\": \"This client is a VIP. Please give him a good table.\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"_id": "5f8e1b9b9d9e4b0017b3b3a0",
"organization_id": "5f8e1b9b9d9e4b0017b3b3a0",
"channel_id": "5f8e1b9b9d9e4b0017b3b3a0",
"referral_id": "5f8e1b9b9d9e4b0017b3b3a0",
"status": "accepted",
"quantity": 10,
"full_name": "John Doe",
"email": "john.doe@example.com",
"phone": "1234567890",
"deposit": 100,
"fee_type": "percentage",
"fee_quantity": 7,
"qr_code": "ABCDE12345",
"activation_code": "ABCDEFGH12345678",
"observations_referral": "This is a referral",
"observations_client": "Please give me a good table",
"payment_id": "pay_1234567890",
"marketing_consent": true,
"billing_info": {
"customer_type": "individual",
"customer_name": "John Doe",
"document_type": "dni",
"document_number": "12345678Z",
"address": "123 Main St",
"city": "Barcelona",
"postal_code": "08001",
"country": "ES"
}
},
"success": true
}Bookings
Update observations of a booking
Update observations of a booking
PATCH
/
bookings
/
{bookingId}
/
observations
Update observations of a booking
curl --request PATCH \
--url https://channels-service-alpha.fourvenues.com/bookings/{bookingId}/observations \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <api-key>' \
--data '
{
"observations_referral": "This client is a VIP. Please give him a good table."
}
'import requests
url = "https://channels-service-alpha.fourvenues.com/bookings/{bookingId}/observations"
payload = { "observations_referral": "This client is a VIP. Please give him a good table." }
headers = {
"X-Api-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({observations_referral: 'This client is a VIP. Please give him a good table.'})
};
fetch('https://channels-service-alpha.fourvenues.com/bookings/{bookingId}/observations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://channels-service-alpha.fourvenues.com/bookings/{bookingId}/observations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'observations_referral' => 'This client is a VIP. Please give him a good table.'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://channels-service-alpha.fourvenues.com/bookings/{bookingId}/observations"
payload := strings.NewReader("{\n \"observations_referral\": \"This client is a VIP. Please give him a good table.\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-Api-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://channels-service-alpha.fourvenues.com/bookings/{bookingId}/observations")
.header("X-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"observations_referral\": \"This client is a VIP. Please give him a good table.\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://channels-service-alpha.fourvenues.com/bookings/{bookingId}/observations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"observations_referral\": \"This client is a VIP. Please give him a good table.\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"_id": "5f8e1b9b9d9e4b0017b3b3a0",
"organization_id": "5f8e1b9b9d9e4b0017b3b3a0",
"channel_id": "5f8e1b9b9d9e4b0017b3b3a0",
"referral_id": "5f8e1b9b9d9e4b0017b3b3a0",
"status": "accepted",
"quantity": 10,
"full_name": "John Doe",
"email": "john.doe@example.com",
"phone": "1234567890",
"deposit": 100,
"fee_type": "percentage",
"fee_quantity": 7,
"qr_code": "ABCDE12345",
"activation_code": "ABCDEFGH12345678",
"observations_referral": "This is a referral",
"observations_client": "Please give me a good table",
"payment_id": "pay_1234567890",
"marketing_consent": true,
"billing_info": {
"customer_type": "individual",
"customer_name": "John Doe",
"document_type": "dni",
"document_number": "12345678Z",
"address": "123 Main St",
"city": "Barcelona",
"postal_code": "08001",
"country": "ES"
}
},
"success": true
}Authorizations
Path Parameters
Booking ID
Body
application/json
Observations of the referral
Example:
"This client is a VIP. Please give him a good table."
⌘I