My EMI Pay
  1. Application
  • My-EMI Lending API
  • System
    • Health check
      GET
  • Products
    • List published loan products
      GET
  • Auth
    • Request OTP
      POST
    • Resend OTP
      POST
    • Refresh tokens
      POST
    • Verify OTP
      POST
    • Select a family account after OTP
      POST
    • Add a family member on this phone
      POST
    • Logout
      POST
    • List family profiles on this phone
      GET
    • Send email verification link
      POST
    • Email verification status
      GET
    • Confirm email verification (Bearer)
      GET
    • Confirm email verification token (Bearer)
      POST
    • iOS Universal Links association
      GET
    • Android App Links association
      GET
  • Profile
    • Get customer profile
      GET
    • Update customer profile
      POST
  • Application journey
    • HTML origination document pack
    • Start bank statement consent
    • Poll bank statement consent
    • Application journey
    • Start PAN KYC via DigiLocker
    • PAN KYC status
    • Start Aadhaar KYC via DigiLocker
    • Aadhaar KYC status
    • Edit Aadhaar communication address
    • Verify bank account (KYC)
    • Start eSign
    • eSign status
    • Complete PAN KYC (poll DigiLocker)
    • Complete Aadhaar KYC (poll DigiLocker)
    • Start mock e-NACH
    • Pull bureau report
    • Mock e-NACH status
    • Bureau report
    • Loan eligibility
  • Webhooks
    • Resolve or fail bureau claim
    • Resolve or fail KYC claim
    • Resolve or fail eSign claim
    • Resolve or fail income claim
  • Ops
    • Confirm queued payouts
    • Wake steps that are waiting on a clock
    • Retry one failed payout row
  • Other
    • List published originators
    • HTML origination pack for one originator
  • Application
    • Get current application screen
      GET
    • Begin verification
      POST
    • Verify PAN
      POST
    • Acknowledge credit score
      POST
    • Accept offer
      POST
    • Create loan
      POST
    • Request payout
      POST
  • Applications
    • Get current application screen
    • Begin verification
    • Verify PAN
    • Acknowledge credit score
    • Accept offer
    • Create loan
    • Request payout
  1. Application

Create loan

POST
https://api-dev.myemipay.com/application/create-loan
Last modified:2026-09-27 16:32:15
Create loan
Description: one loan per application. This is the ledger loan, not the payout.
Usage: status accepted and youCanNow includes create_loan (after mock e-NACH is active).
Details: optional { loanId } (server generates otherwise). 201 { loan: { id, status } }. Captures loanId.
Next: POST /application/request-payout with that loanId, then ops dispatch-due.
Auth: Authorization: Bearer {{accessToken}}
Errors: 401 unauthorized | session_expired · 409 Revision conflict or step_not_ready

Request

Header Params

Body Params application/json

Examples

Responses

🟢201Loan created
application/json
Bodyapplication/json

🟠401Unauthorized
🟠409Revision conflict
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api-dev.myemipay.com/application/create-loan' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data '{
  "loanId": "",
  "revision": ""
}'
Response Response Example
201 - Loan created
{
  "loan": {
    "id": "loan_1735123456789",
    "status": "active"
  }
}
Modified at 2026-09-27 16:32:15
Previous
Accept offer
Next
Request payout
Built with