Generate Pre-Auth Access Links

Generate Pre-Auth Access Links

post

Generate pre-authenticated links for candidates to take the interview.

Authorizations
Path parameters
idstringRequired

The interview ID

Body
startTimestring · date-timeRequiredExample: 2025-04-14T09:30:00.000Z
endTimestring · date-timeRequiredExample: 2025-04-15T09:30:00.000Z
Responses
200

Pre-authenticated links generated

application/json
Responseall of
post
POST /api/v1/interview/{id}/access-links HTTP/1.1
Host: interview-api.zeko.ai
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 279

{
  "candidates": [
    {
      "name": "rahul",
      "email": "rahul2002m@gmail.com",
      "phone": "",
      "resumeLink": "https://ap-south-1.s3.amazonaws.com/resume.pdf",
      "metaData": {
        "Id": 12345,
        "name": "012 - Tester",
        "clientId": 12434311
      }
    }
  ],
  "startTime": "2025-04-14T09:30:00.000Z",
  "endTime": "2025-04-15T09:30:00.000Z"
}
{
  "message": "Pre-auth(s) link generated successfully",
  "success": true,
  "data": {
    "data": [
      {
        "email": "rahul2002m@gmail.com",
        "preAuthLink": "https://interview.zeko.ai/ai-interview/...",
        "demoInterviewLink": "https://interview.zeko.ai/ai-interview/...",
        "rescheduleLink": "https://interview.zeko.ai/ai-interview/..."
      }
    ]
  }
}

Last updated