curl --request POST \
--url https://{subdomain}.mindhunters.ai/api/v1/appointments \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"schedule_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "Team Meeting",
"start_time": "2025-12-01 10:00:00",
"end_time": "2025-12-01 11:00:00",
"contact_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"description": "<string>",
"status": "approved",
"notes": "<string>",
"custom_answers": {}
}
'