curl --request PUT \
--url https://api-alpha.fourvenues.com/integrations/bookings/{bookingId}/update-fields \
--header 'Content-Type: application/json' \
--header 'integration_id: <api-key>' \
--header 'secret: <api-key>' \
--header 'x-api-key: <api-key>' \
--data '
{
"name": "John Doe Updated",
"email": "john.updated@example.com",
"phone": "+34666123456",
"for": 6,
"status": "confirmed",
"price": 2000,
"pos_ticket_total": 25,
"pos_total_service_charge": 0,
"pos_total_tips": 0,
"commentary_reserve": "Cumpleaños",
"commentary_client": "",
"deposit_paid": 30,
"walkin": false,
"duration": 0,
"enter": 6,
"date": "2025-08-14T22:00:00.000Z",
"pos_products": [
{
"_id": "<string>",
"name": "<string>",
"amount": 123,
"unit_price": 123,
"total_price": 123
}
],
"pos_payments": [
{
"type": "<string>",
"amount": 123
}
]
}
'