v1
latestOpenAPI 3.0.02026-07-26167441.9 MBCreate Pre-Debit Notification
Sends the NPCI-required pre-debit notification to the customer before a UPI Autopay recurring debit. The provider delivers the notice and returns a reference; keep the returned id and send it on the recurring debit as payment_method.detail.bank_transfer.pre_debit_notification_id.
post/predebit-notify
Headers
X-Idempotency-Keystring required
Unique identifier used in HTTP headers to ensure that a request is processed only once, even if it is retried due to network issues or timeouts.
Request body
Example request
{
"amount": {
"currency": "INR",
"value": "499.00"
},
"payment_method": {
"type": "UPI_AUTOPAY"
},
"provider_data": {
"id": "EBANX"
}
}Response
Notification created. Check status: SENT means the provider delivered it.
Example response
{
"amount": {
"currency": "INR",
"value": "499.00"
}
}