Get Interview Results
Retrieve the results for all candidates of a specific interview.
Authorizations
Path parameters
idstringRequiredExample:
The interview ID
67f55dddb27e0a17d1228bf1
Query parameters
pageintegerOptionalExample:
1
limitintegerOptionalExample:
10
searchstringOptionalExample:
Search by name, email, phone, or metaData
Zeko
Responses
200
Results retrieved successfully
application/json
Responseall of
401
Missing or invalid Authorization header
application/json
404
Interview not found
application/json
422
Input Validation failed (e.g. results not ready)
application/json
500
Internal Server Error
application/json
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