post https://api-staging.pluralonline.com/api/v1/netbanking/process/payment
Use the below endpoint to Process Payment Netbanking.
Request Parameters:
Attribute | Type | Details |
---|---|---|
pay_code* | string | pay_code is the unique identifier of the bank on which net banking transaction is intended. pay_code can be taken from the codes table. |
customer_data | () | arrry of data |
mobile_no* | integer | vaild mobile number |
country_code | integer | vaild country code. |
email_id* | string | Email of the user. |
Request Body payload:
{
"netbanking_data": {
"pay_code": "NB1006"
},
"customer_data": {
"country_code": "91",
"mobile_number": "9121004027",
"email_id": "[email protected]"
}
}
Response Payload:
{
true
}
{}
Response Parameters
Parameter Name | Type | Description |
---|---|---|
true | Boolean | true / false message as per transaction. |