NICEPAY API
...
Payout (Disbursement) API
Reject - API Payout (Disbursement)
7 min
about reject payout (disbursement) this {{api}} uses by {{merchant}} to reject {{the}} registered {{payout}} {{transaction}} on registration api payout (disbursement) docid\ n5gqghicwz p jmbdkzmi api reject (disbursement) payout 160,582,117 false false unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type request parameter for payout reject 144,78,81,207,208,197 false true unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type response parameter for payout reject 144,75,97,201,201,230 false true unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type json sample for payout reject json request { 	"timestamp" "20221221131217", "imid" "ionpaytest", 	"merchanttoken" "a2c7fcd58e2106af575554677fda83a103c994e6d385df934523031f212f448d", 	"txid" "ionpaytest07202212211309324833" } json response { "resultcd" "0000", "transtm" null, "referenceno" "ord12345", "txid" "ionpaytest07202212211309324833", "amt" "10000", "resultmsg" "success", "imid" "ionpaytest", "benefnm" "pt ionpay networks", "accountno" "5345000060", "bankcd" "bdin", "transdt" null } java request // // reject hashmap\<string, object> requestmap = new hashmap\<string, object>(); requestmap put("timestamp", "20221221131217"); requestmap put("imid", "ionpaytest"); requestmap put("merchanttoken",nicepay getmerchanttoken()); requestmap put("txid", "ionpaytest07202212211309324833"); //nicepay api domain string mydomain = "https //dev nicepay co id"; //response json string string resultdata = ""; try { objectmapper mapper = new objectmapper(); string contents = mapper writevalueasstring(requestmap); url url = new url(mydomain + "/nicepay/api/direct/v2/rejectpayout"); urlconnection conn = url openconnection(); conn setdooutput(true); conn setusecaches(false); conn setrequestproperty("content type", "application/json"); dataoutputstream os = null; try { os = new dataoutputstream(conn getoutputstream()); os writebytes(contents); os flush(); } finally { if (out != null) os close(); } }