- 🔗 Generate KYB onboarding link for a mandate
📋 Get all clients
➕ Create a new client
📄 Get client details
✏️ Update client details
🗑️ Delete a client
🧑💻 Generate a Desktop Token
📊 Get onboarding link status
🔗 Generate KYB onboardin...
Generate a Dotfile KYB onboarding link for a mandate in PENDING_KYB status.
If no KYB case exists yet for this mandate, one is created on the fly. If a case already exists, a fresh link is returned for it.
Security
APIKeyHeader
- Dev serverhttps://pdp.seqino.dev/api/clients/onboarding-link
- Production serverhttps://pa.seqino.com/api/clients/onboarding-link
curl -i -X POST \
https://pdp.seqino.dev/api/clients/onboarding-link \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-H 'X-PDP-Client-Id: client_abc123' \
-d '{
"mandate_id": "mdt_abc12345"
}'Response
{ "onboarding_url": "string", "mandate_id": "string", "expires_at": "2019-08-24T14:15:22Z" }