Generate Access Link

Generate Presigned Auth Link

post

Generate a presigned URL for authentication.

Body
clientIdstringRequiredExample: 649eadcb44d6bgfg1cb085b53
apiKeystringRequiredExample: 123abc456xyz
expiresInintegerOptionalExample: 3600
Responses
201

Presigned URL generated successfully

application/json
Responseall of
post
POST /api/v1/auth/link HTTP/1.1
Host: interview-api.zeko.ai
Content-Type: application/json
Accept: */*
Content-Length: 81

{
  "clientId": "649eadcb44d6bgfg1cb085b53",
  "apiKey": "123abc456xyz",
  "expiresIn": 3600
}
{
  "message": "Interview created successfully",
  "success": true,
  "data": {
    "presignedUrl": "https://app.zeko.ai/app/interview?token=...",
    "expiresIn": 3600
  }
}

Last updated