Generate Access Link
Generate a presigned URL for authentication.
Body
clientIdstringRequiredExample:
649eadcb44d6bgfg1cb085b53
apiKeystringRequiredExample:
123abc456xyz
expiresInintegerOptionalExample:
3600
Responses
201
Presigned URL generated successfully
application/json
Responseall of
401
Missing or invalid Authorization header
application/json
422
Input Validation failed
application/json
500
Internal Server Error
application/json
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