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

Accept offer

POST
https://api-dev.myemipay.com/application/accept-offer
Last modified:2026-09-27 16:32:15
Accept offer
Description: customer consent to the sanctioned offer. The Key Facts Statement must already exist. Moves to accepted, which unlocks create-loan.
Usage: journey accept_offer / screen youCanNow includes accept. Not while eligibility is still waiting on the KFS.
Details: optional revision / If-Match. 409 kfs_not_ready if the statement is missing. 409 on stale revision or step_not_ready.
Next: journey kyc_bank → esign → e-NACH → POST /application/create-loan.
Auth: Authorization: Bearer {{accessToken}}
Errors: 401 unauthorized | session_expired · 403 Forbidden · 404 Application not found · 409 Revision conflict, step_not_ready, or kfs_not_ready

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Offer accepted
application/json
Bodyapplication/json

🟠401Unauthorized
🟠409Revision conflict
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api-dev.myemipay.com/application/accept-offer' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data '{
  "revision": ""
}'
Response Response Example
200 - Offer accepted
{
  "application": {
    "id": "app_1735123456789",
    "reference": "PME-A1B2C3D4"
  },
  "status": "accepted",
  "message": "You accepted the offer.",
  "youCanNow": [
    {
      "action": "create_loan",
      "title": "Create loan",
      "submitTo": "/application/create-loan"
    }
  ],
  "revision": "5"
}
Modified at 2026-09-27 16:32:15
Previous
Acknowledge credit score
Next
Create loan
Built with