- Payment Gateway Overview
- Payment Gateway Sign Up
- Payment Methods
- Supported Integrations
- Payment Gateway APIs
- Web Integration
- Server to Server Integration
- Test Card Details
- Authorization
- Orders
- Payments
- Refunds
- Settlements
- Split Settlements
- E-Commerce Plugins
- Payment Links
- Payment Button
- Qr Code
- UPI Mandate
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
bnplPaymentOptionId
string
optional
Example
{
"response_code": 0,
"response_message": "string",
"payload": {
"paymentModes": [
{
"name": "string",
"code": "string"
}
],
"bnplPaymentOptionId": "string"
}
}
Modified at 2025-03-28 04:10:13