curl -X POST https://api.exterview.ai/graphql \
-H "x-api-key: YOUR_API_KEY" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"query": "mutation assignInterviewer($input: AssignInterviewerInput!) { assignInterviewer(input: $input) { message result { acknowledged insertedId _id } } }",
"variables": {
"input": {
"candidateId": "C100",
"interviewerId": "I99",
"dateAndTime": "2025-10-22T18:45:00.000Z",
"status": "Scheduled"
}
}
}'