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 created in a pending state; biometric eKYC (via Sender KYC) must follow to activate full monthly limits. An OTP is dispatched to the customer's mobile number for confirmation.

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.

example: REQ-20260101-001

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 array of address lines.

example: ["123 Main Street", "Connaught Place", "New Delhi", "110001"]

Headers

developer_keystringRequired

Static API key issued to your account after KYC.

secret-keystringRequired

Dynamic per-request signature: base64(HMAC-SHA256(timestamp, base64(access_key))).

secret-key-timestampstringRequired

Current time in milliseconds since UNIX epoch, used to compute secret-key. Must match server time.

content-typestringRequired

application/json

example: application/json

Responses

  • 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.

    • customer_idstring

      Mobile number of the newly registered sender.

    • statenumber

      Account state: 10=Pending KYC verification.

    • otp_ref_idstring

      Reference ID for the OTP sent to the sender's mobile. Used in the Validate eKYC OTP step.

    • available_limitnumber

      Initial transfer limit before eKYC (in INR). Typically ₹5,000.

Next steps

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

Related