EnKash API Document
HomePayment GatewayPayoutsCreate Account
HomePayment GatewayPayoutsCreate Account
Login
  1. Orders
  • Payment Gateway Overview
  • Payment Gateway Sign Up
  • Payment Methods
  • Supported Integrations
  • Payment APIs
  • Test Card Details
  • Authorization
    • About Authorization
    • Get Authorization Token
      POST
  • Orders
    • Order Overview
    • About Order
    • Create Order
      POST
    • Get Order Status
      GET
    • Get BNPL Payment Modes
      GET
  • Payments
    • Payment Overview
    • About Payment
    • Get Transaction Status
      GET
    • Submit Payment Detail
      POST
  • Refunds
    • About Refund
    • Refund
      POST
  • Payment Links
    • Upi Intent Link Detail
      GET
  • Settlements
    • About Settlement
    • Get Settlement Payout By Id
      GET
    • Search Settlement Payouts
      POST
  • QR Generation API
    • Get Dynamic QR Code
  • Payment Button
  • Qr Code
    • Create QR
    • Create QR Customer
    • Search QR Code
    • Get QR Code
    • Cancel QR Code
  1. Orders

Get BNPL Payment Modes

GET
/api/v0/orders/{orderId}/bnpl-options
order-controller

Request

Path Params
orderId
string 
required
Query Params
mobile
string 
optional
Match pattern:
[6-9][0-9]{9}
Header Params
Authorization
string 
required
merchantAccessKey
string 
required

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v0/orders//bnpl-options' \
--header 'Authorization;' \
--header 'merchantAccessKey;'

Responses

🟢200OK
application/json
Body
response_code
integer <int32>
optional
response_message
string 
optional
payload
object (PayLaterPaymentModeResponse) 
optional
paymentModes
array[object (BankCode) {2}] 
optional
List of supported payment options for the mobile number given on the order
bnplPaymentOptionId
string 
optional
BNPL payment option Id to be passed in Submit Payment Detail API in case of paymentMode is PAY_LATER
Example
{
    "response_code": 0,
    "response_message": "string",
    "payload": {
        "paymentModes": [
            {
                "name": "string",
                "code": "string"
            }
        ],
        "bnplPaymentOptionId": "string"
    }
}
Previous
Get Order Status
Next
Payment Overview
Built with