diff --git a/content/payments/billpay/pre-built-screens/custom-payment/apis.mdx b/content/payments/billpay/pre-built-screens/custom-payment/apis.mdx index 981c177d..7bdd3cea 100644 --- a/content/payments/billpay/pre-built-screens/custom-payment/apis.mdx +++ b/content/payments/billpay/pre-built-screens/custom-payment/apis.mdx @@ -34,12 +34,17 @@ The following API needs to be integrated by you, and is sent in the case of a su "paymentDateTime": "YYYY-MM-DD HH:MM:SS in UTC", "amount": "100.00", "paymentMode": "CASH|UPI|IMPS|NEFT|AEPS|ACCOUNT TRANSFER|INTERNET BANKING|WALLET|DEBIT CARD|CREDIT CARD|PREPAID CARD|Bharat QR|USSD", - "paymentStatus": "SUCCESS|FAILURE" + "paymentStatus": "SUCCESS|FAILURE", + "remitter": { + "name": "XX", + "pan": "xxxx", + "email": "XXXX", + "aadhaar": "XXX" + }, + "accountInfo": "ICIC0000152|1234567890" }`} -The `orderId` is always prefixed with `COUWL` to identify Setu payment requests. - **Response** @@ -48,6 +53,15 @@ The `orderId` is always prefixed with `COUWL` to identify Setu payment requests. }`} + + +The `orderId` is always prefixed with `COUWL` to identify Setu payment requests. + +To learn more about the `remitter` and `accountInfo` properties, please refer to the [integration guide](/payments/billpay/pre-built-screens/remitter-details). + + + +
### APIs you need to support @@ -89,11 +103,25 @@ Content-Type: application/json`} "paymentDateTime": "YYYY-MM-DD HH:MM:SS in UTC", "amount": "100.00", "paymentMode": "CASH|UPI|IMPS|NEFT|AEPS|ACCOUNT TRANSFER|INTERNET BANKING|WALLET|DEBIT CARD|CREDIT CARD|PREPAID CARD|Bharat QR|USSD", - "paymentStatus": "SUCCESS|FAILURE" + "paymentStatus": "SUCCESS|FAILURE", + "remitter": { + "name": "XX", + "pan": "xxxx", + "email": "XXXX", + "aadhaar": "XXX" + }, + "accountInfo": "ICIC0000152|1234567890" } }`} + + + +To learn more about the `remitter` and `accountInfo` properties, please refer to the [integration guide](/payments/billpay/pre-built-screens/remitter-details). + + +
##### Refund