Get KYC Verification Link

Get a URL for user to complete KYC verification

GET
texttext
/api/v2/kyc/verification-link

Generates a time-limited URL that you can redirect users to for completing their KYC verification.

Query Parameters

userIdstringrequired
OZZOBiT user ID
redirectUrlstring
URL to redirect to after completion

Response Schema

verificationUrlstring
Full URL for KYC verification
expiresAtstring
ISO 8601 expiry timestamp
expiresInnumber
Seconds until expiry

Example

jsonjson
GET /api/v2/kyc/verification-link?userId=OZZOBiT_user_abc&redirectUrl=https://your-app.com/kyc-done
// Response:
{
  "verificationUrl": "https://OZZOBiT.com/kyc/verify?token=xyz789",
  "expiresAt": "2024-01-15T11:00:00Z",
  "expiresIn": 3600
}