Fintech APIs & Platform for KYC, Verification & Transactions in India | Eko Platform Services
Eko Platform Services Logo

POSTOnboard Sender

Register a new customer as a DMT-Fino sender using basic KYC details.

POST/customer/payment/dmt-fino/sender/{customer_id}

Registers a new customer in the DMT-Fino system. Provide the customer's name, date of birth, and residence address. On success the sender is opened on Eko but KYC on Fino is still pending — complete biometric eKYC (Sender eKYC → Validate eKYC OTP) next. If the sender was already onboarded on Fino externally, the response instead matches the KYC-complete profile from Get Sender Profile (response_type_id 309) and no eKYC is required. After onboarding, call Get Sender Profile to read the sender's current stage.

Tip
This endpoint is one step in a complete workflow:
  • DMT (Fino) — Send Money Full Fino DMT money-transfer flow: look up the sender, onboard and biometric-eKYC them if new, pick or add the recipient, then send an OTP-verified transfer.

Request

Path parameters

customer_idstringRequired

Sender's 10-digit mobile number (used as customer identifier).

example: 9123456789

Body parameters

initiator_idstringRequired

Registered mobile number of the API user (see Platform Credentials).

example: 9962981729

client_ref_idstringoptional

Unique reference ID per API call, generated by your system (max 20 characters).

example: 2026010100123456789

namestringRequired

Full name of the sender as per their ID proof.

example: Ramesh Kumar

dobstringRequired

Date of birth in YYYY-MM-DD format.

example: 1990-05-15

residence_addressstringRequired

Customer's residence address as a JSON-encoded object with keys: line, city, state, pincode, district, area.

example: {"line":"India","city":"Indore","state":"Madhya Pradesh","pincode":"226024","district":"Indore","area":"gita bhavan"}

Response types

response_type_idMeaningNext step
2134Onboarded, KYC pending — proceed to Sender eKYCSender eKYC (Biometric)
300Already onboarded, KYC pending — re-check stage with Get Sender ProfileGet Sender Profile
309Already onboarded on Fino — KYC complete, proceed to RecipientsGet Recipients

Responses

2134Onboarded, KYC pending — proceed to Sender eKYCNext:Sender eKYC (Biometric)

  • statusnumber

    Primary success indicator (0 = success).

  • messagestring

    Human-readable response / error message.

  • response_status_idnumber

    Granular status id; see the shared error-codes table.

  • response_type_idnumber

    A unique id for every possible response shape (success or error) — useful for client logic branching and analytics.

  • dataobject

    API-specific response payload.

    • otp_ref_idstring

      OTP reference placeholder returned with the KYC-pending status. Empty until eKYC is initiated via Sender eKYC.

Next steps

NextPUTSender eKYC (Biometric)Initiate biometric Aadhaar eKYC to verify and upgrade a DMT sender's account.

Related