added

October 2nd 2025

Added

Veriff KYC Media Endpoints

Introduced two new GET endpoints to retrieve media artifacts from Veriff KYC sessions. These endpoints allow clients to enumerate available media files and download their content.


/payout/user/{user_token}/kyc/veriff/{session_id}List session media

Lists all media artifacts for the specified Veriff session. Returns an array of objects with media_id, name, and mime fields.

200 Response (example)

[
  {
    "media_id": "2208facf-5cbe-4cd1-81d0-063dea884117",
    "name": "document-back",
    "mime": "image/jpeg"
  },
  {
    "media_id": "083d2e0c-7a81-4b1d-90ae-ce092f75bcb2",
    "name": "face-pre",
    "mime": "image/jpeg"
  }
]

/payout/user/{user_token}/kyc/veriff/{session_id}/{media_id}Get media content

Retrieves the Base64-encoded content of a specific media file within a Veriff session. Returns a JSON object containing a content field.

200 Response (example)

{
  "content": "U3dhZ2dlciByb2Nrcw=="
}