Overview of the Down Payment Details API response object.
Shown below is a sample response returned through our Down Payment Details API.
{
"downpayment_details": {
"amount_range": {
"min": {
"currency": "INR",
"value": 0
},
"max": {
"currency": "INR",
"value": 1050000
}
},
"amount_milestone_list": [
{
"currency": "INR",
"value": 0
},
{
"currency": "INR",
"value": 100
},
{
"currency": "INR",
"value": 10000
},
{
"currency": "INR",
"value": 100000
},
{
"currency": "INR",
"value": 200000
},
{
"currency": "INR",
"value": 262500
}
],
"allowed_payment_methods": [
"UPI"
]
}
}
The table below lists the various parameters returned in the down payment details response object.
Parameter | Type | Description |
---|---|---|
downpayment_details | object | An object that contains the down payment details. Learn more about our downpayment_details child object. |
Downpayment Details [Child Object]
The table below lists the various parameters in the downpayment_details
child object. This is part of the downpayment details API response object.
Parameter | Type | Description |
---|---|---|
amount_range | object | An object that contains the amount range details. Learn more about our amount_range child object. |
amount_milestone_list | array of objects | An array of objects that contains the amount milestone details. Learn more about our amount_milestone_list child object. |
allowed_payment_methods | array of strings | An object that contains the allowed payment methods details. Learn more about our allowed_payment_methods child object. |
Amount Range [Child Object]
The table below lists the various parameters in the amount_range
child object. This is part of the downpayment_details
object.
Parameter | Type | Description |
---|---|---|
min | object | An object that contains the minimum amount details. Learn more about our min child object. |
max | object | An object that contains the maximum amount details. Learn more about our max child object. |
Min [Child Object]
The table below lists the various parameters in the min
child object. This is part of the amount_range
object.
Parameter | Type | Description |
---|---|---|
currency | String | Type of currency. Example: INR |
value | integer | Transaction amount is Paisa.
1000 |
Max [Child Object]
The table below lists the various parameters in the max
child object. This is part of the amount_range
object.
Parameter | Type | Description |
---|---|---|
currency | String | Type of currency. Example: INR |
value | integer | Transaction amount is Paisa.
1000 |
Amount Milestone List [Child Object]
The table below lists the various parameters in the amount_milestone_list
child object. This is part of the downpayment_details
object.
Parameter | Type | Description |
---|---|---|
currency | String | Type of currency. Example: INR |
value | integer | Transaction amount is Paisa.
1000 |