curl --location -g --request PATCH '{{ecommercev2_url}}/appointments//partial' \
--header 'Content-Type: application/json' \
--header 'x-access-token;' \
--data-raw '{
"notes": {
"text": "Client requested to discuss additional requirements",
"attachment": {
"name": "requirements.pdf",
"url": "https://example.com/files/requirements.pdf",
"size": 2048,
"mimeType": "application/pdf"
}
},
"customer": {
"name": "Sarah Johnson",
"mobileNumber": "+1987654321",
"email": "sarah.johnson@example.com"
},
"status": "CONFIRMED"
}'