Get Interview Results

Get Results for an Interview

get

Retrieve the results for all candidates of a specific interview.

Authorizations
Path parameters
idstringRequired

The interview ID

Example: 67f55dddb27e0a17d1228bf1
Query parameters
pageintegerOptionalExample: 1
limitintegerOptionalExample: 10
searchstringOptional

Search by name, email, phone, or metaData

Example: Zeko
Responses
200

Results retrieved successfully

application/json
Responseall of
get
GET /api/v1/interview/{id}/results HTTP/1.1
Host: interview-api.zeko.ai
Authorization: Bearer JWT
Accept: */*
{
  "message": "Results retrieved successfully",
  "success": true,
  "data": [
    {
      "interviewId": "67f55dddb27e0a17d1228bf1",
      "candidate": {
        "name": "Rahul",
        "email": "rahul2002m@gmail.com"
      },
      "scores": {
        "interviewScore": 85,
        "communicationScore": 80,
        "codingScore": 90
      },
      "metaData": {
        "Id": 12345,
        "name": "012 - Tester",
        "clientId": 12434311
      },
      "reportLink": "https://app.zeko.ai/report..."
    }
  ]
}

Last updated