curl --location --request POST '/v1/external/calls/actions/schedule-call' \
--header 'x-client-code;' \
--header 'Content-Type: application/json' \
--data-raw '{
"expertId": "exp-001",
"projectId": "proj-12345",
"status": "APPROVED",
"reason": "Optional reason for screened",
"callLink": "https://teamroom.ai/meeting/abc123",
"callTitleForExpert": "Project Kickoff",
"scheduledStartTime": "2025-04-02T10:00:00Z",
"scheduledEndTime": "2025-04-02T11:00:00Z",
"type": "Survey"
}'
{
"status": "success",
"callId": "call-67890",
"message": "Call scheduled successfully"
}