This allows you to redirect the user to a KYC provider to complete identity verification.
🔐 Headers
Header | Description |
---|---|
partner-api-key | API key associated with your partner account. Required. See API Key Generation Guide. |
This endpoint requires authentication using a valid
partner-api-key
.📥 Request Body
Field | Type | Required | Description |
---|---|---|---|
country | string | ✅ | The country code where the partner operates. Must be a valid ISO 3166-1 alpha-2 country code. Examples: MX , DO . |
partnerRedirectUri | string | 🔘 | URL to which the user is redirected after completing KYC. Accepts both HTTPS and custom mobile URI schemes (e.g., https:// , myapp:// ). |
📘 Example Request
📤 Response Body
Field | Type | Description |
---|---|---|
kycLink | string | The direct link to the KYC provider for the user. |
📘 Example Response
⚠️ Important Notes & Requirements
- Partner API Key is mandatory: All requests must include a valid
PartnerApiKey
in the header. Get your API key. - User must exist: You must create the user first using the Create User endpoint before generating a verification link.
- Supported Countries: Only supported countries for KYC include
MX
(Mexico) andDO
(Dominican Republic). - KYC Provider Sessions: Each
kycLink
is unique and tied to a single verification session. If expired, a new link must be generated. - Redirection: If
partnerRedirectUri
is not provided, the user may not be redirected after completing the KYC process.
✅ Use Cases
-
Initiate KYC Flow
Trigger a KYC process for a user immediately after account creation by generating a verification link and directing the user to it. -
Email or App Link
Embed thekycLink
in an onboarding email or app screen so the user can complete verification with one click. -
Custom App Redirect
UsepartnerRedirectUri
to bring the user back to your app (web or mobile) after finishing KYC verification with the provider.
Headers
Api key for the affiliated partner that is performing the request
Path Parameters
The id of the entity
Body
application/json
The country code for the partner
@description The country must be a valid ISO 3166-1 alpha-2 country code, see: @link https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
Available options:
MX
, DO
, US
, AT
, BE
, BG
, HR
, CY
, CZ
, DK
, EE
, FI
, FR
, DE
, GR
, HU
, IE
, IT
, LV
, LT
, LU
, MT
, NL
, PL
, PT
, RO
, SK
, SI
, ES
, SE
, IS
, LI
, NO
, CH
, GB
, MC
, SM
, AD
, VA
Example:
"MX"
The redirect URI for the partner to redirect the user after the KYC process is completed
Example:
"https://partner.com or myapp://partner.com"