Table of Contents
Download KYC Documents (Gateway) #
Fetches signed URLs for the customer’s digital identity package through https://api-test.10npay.com. Use this after the submission is approved.
Endpoint #
GET https://api-test.10npay.com/api/v1/KycSubmission/{individualId}/documents/download
Response #
{
"links": [
{ "type": "ID_FRONT", "fileName": "id-front.jpg", "url": "https://signed-links..." },
{ "type": "ID_BACK", "fileName": "id-back.jpg", "url": "https://signed-links..." },
{ "type": "SIGNED_PROFILE", "fileName": "client-data.pdf", "url": "https://signed-links..." }
],
"expiresAt": "2026-05-29T13:15:00Z"
}
Each URL is pre-signed and typically expires within a few minutes. Download the files immediately and relay them to the requesting partner via a secure channel.
Prerequisites #
- The individual must have completed
POST /Enrollment/finalize-external-identification. - Your bearer token must include the CRM/KYC scopes.
Error codes #
- 400 – submission still pending.
- 401 – invalid token.
- 404 – individual ID unknown.
- 410 – documents purged per retention policy.
- 500 – temporary storage failure.
