My EMI Pay
  1. Application journey
  • My-EMI Lending API
  • System
    • Health check
      GET
  • Products
    • List published loan products
      GET
  • Auth
    • Request OTP
      POST
    • Verify OTP
      POST
    • Refresh tokens
      POST
    • Select a family account after OTP
      POST
    • Add a family member on this phone
      POST
    • Logout
      POST
    • 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
    • List family profiles on this phone
      GET
    • Resend OTP
      POST
  • Profile
    • Get customer profile
    • Update customer profile
  • Applications
    • Get current application screen
    • Begin verification
    • Verify PAN
    • Acknowledge credit score
    • Accept offer
    • Create loan
    • Request payout
  • Application journey
    • Application journey
      GET
    • Start PAN KYC via DigiLocker
      POST
    • PAN KYC status
      GET
    • Start Aadhaar KYC via DigiLocker
      POST
    • Aadhaar KYC status
      GET
    • Edit Aadhaar communication address
      POST
    • Verify bank account (KYC)
      POST
    • Start eSign
      POST
    • eSign status
      GET
    • Bureau report
      GET
    • Loan eligibility
      GET
    • Complete PAN KYC (poll DigiLocker)
      POST
    • Complete Aadhaar KYC (poll DigiLocker)
      POST
    • Pull bureau report
      POST
    • Start mock e-NACH
      POST
    • Mock e-NACH status
      GET
    • HTML origination document pack
      GET
  • Applications (staff)
    • Pull bureau (staff/system)
    • Evaluate and sanction (staff/system)
    • Cancel application (staff/system)
  • Applications (deprecated)
    • Get application screen by id (deprecated)
    • Begin verification (by id) (deprecated)
    • Verify PAN (by id) (deprecated)
    • Acknowledge credit score (by id) (deprecated)
    • Accept offer (by id) (deprecated)
    • Create loan (by id) (deprecated)
    • Request payout (by id) (deprecated)
  • Webhooks
    • Resolve or fail bureau claim
    • Resolve or fail KYC claim
    • Resolve or fail eSign claim
    • Resolve or fail income claim
  • Ops
    • Dispatch due outbox handlers
    • Poll workflow timers
    • Redrive dead-letter handler
  • Other
    • List published originators
    • HTML origination pack for one originator
  1. Application journey

Mock e-NACH status

GET
https://api-dev.myemipay.com/application/enach/status
Last modified:2026-09-23 08:46:10
Mock e-NACH status
Description: mock completion. Default poll activates the mandate. DEMO_MOCK_MANDATE=fail cancels it so payout cannot run.
Usage: after enach start, until resolved or failed.
Details: { status, verified?, url?, failureReason? }. Failed auto-debit does not unlock disbursement.
Next: when resolved, POST /applications/create-loan. If failed, POST /application/enach/start again.
Auth: Authorization: Bearer {{accessToken}}
Errors: 401 unauthorized | session_expired · 404 not_found · 409 step_not_ready — finish the previous journey step first

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200Mandate active
application/json
Bodyapplication/json

🟠401Unauthorized
🟠409Step not ready
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api-dev.myemipay.com/application/enach/status' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Mandate active
{
  "status": "resolved",
  "verified": true
}
Modified at 2026-09-23 08:46:10
Previous
Start mock e-NACH
Next
HTML origination document pack
Built with