Skip to main content
The Patch API allows you to update custom fields for a specific interview record. This is highly useful for syncing data, scores, or review flags from your external tools back into InterviewFlowAI.
curl -X PATCH "https://api.interviewflowai.com/api/interview/custom-fields" \
  -H "Content-Type: application/json" \
  -H "X-API-KEY: your_api_key_here" \
  -d '{
    "interviewId": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
    "candidateAdditionalFields": {
      "score": 72,
      "review": "yes",
      "isSynced": true
    }
  }'