Get an evaluation

Returns the full record of a specific evaluation, including scores, reviewer comments, and overall recommendation.

Path Parameters
  • evaluation_id
    Type: string
    required

    Unique identifier of the evaluation.

Responses
  • application/json
  • application/json
  • application/json
Request Example for get/apis/evaluations/evaluations/{evaluation_id}
curl https://ff-business-school.fullfabric.cloud/apis/evaluations/evaluations/507f1f77bcf86cd799439011 \
  --header 'FF-Auth: YOUR_SECRET_TOKEN'
{
  "id": "6310edb43b5d00416400042e",
  "application_id": "6385bb5d976a77191200475f",
  "evaluation_template_id": "5fd37ffd976a77675b0006dd",
  "evaluation_template_name": "MBA Admissions Scorecard",
  "evaluator_id": "6385baa4976a771912000511",
  "evaluator_name": "Clara Weber",
  "state": "completed",
  "overall_recommendation": "Admit",
  "score": 87,
  "sections": [
    {
      "name": "Academic Background",
      "score": 90,
      "comment": "Strong academic record from a leading institution."
    },
    {
      "name": "Professional Experience",
      "score": 85,
      "comment": "Solid 4 years at McKinsey. Good leadership examples."
    },
    {
      "name": "Motivation & Fit",
      "score": 86,
      "comment": "Clear and compelling motivation essay."
    }
  ],
  "created_at": 1711000000,
  "updated_at": 1711086400
}