Notus API
Know your customer

Get temporary document URLs for a verification session

Retrieves temporary signed URLs for front document, back document, and face liveness image for a verification session. URLs expire after the specified duration (default 1 hour).

POST
/api/v1/admin/kyc/verification-sessions/document-urls
x-api-key<token>

In: header

sessionIdstring
sessionTypestring
Value in"STANDARD_INDIVIDUAL" | "ENHANCED_INDIVIDUAL"
expiresInSeconds?number

Response Body

curl -X POST "https://api.notus.team/api/v1/admin/kyc/verification-sessions/document-urls" \  -H "Content-Type: application/json" \  -d '{    "sessionId": "string",    "sessionType": "STANDARD_INDIVIDUAL"  }'
{
  "frontDocumentUrl": "string",
  "backDocumentUrl": "string",
  "faceImageUrl": "string"
}