Submit UTR for Approval
Method
POST https://prod.ninjapay.me/uapi/v1/p2p/paymentLink/submitUTR
Parameters
Body (application/json)
{
utr: string; // Add the 12 digit UTR number after successful UPI payment
payer_info: string; // "phone" or "email" info of the customer paying.
callback_url?: string; // Your webhook url for getting response on successuful approval.
extra?: {} // You can add other extra details like customer name, etc.. here.
}
Response
{
"status": <bool>, // true or false
"data": {
"tid": "198A60SO23PN99N7",
},
"message": <sting>
}Payment Success Response
Callback Response
Code Example
Last updated