Order Query

check status of order of upi collection

Header

NameTypeValue
api-keystring(get it from api credentials in api panel)
content-typestringapplication/json
acceptstringapplication/json
$header = [  
    'accept: application/json',  
    'api-key: XdWCmd0NF1ZVklnVPegOdL59WkFM7o4h91UYPAt1',  
    'content-type: application/json',  
];

Request Body Parameters

NameTypeValue
partner_idinteger(Get in from api panel you api parner id)
apitxnidStringUnique transaction id shared at the time of order create api
$parameter = [
    'partner_id' => '1',
  	'apitxnid'   => 'UPI12345'
];

$body_json_string = json_encode($parameter);

Response Body Parameters

NametypeConditionPossible Value
statuscodeStringAll TimeTXN / TUP / TXF / ERR
messageStringAll TimeTransaction Response Message
statusStringIn Case TXN/TUPsuccess/failed/pending
txnidStringIn Case TXNUpi collection reference id
amountStringIn Case TXNCollection Amount
utrStringIn Case TXNBank Utr
payment_modeStringIn Case TXNPayment Mode
payidStringIn Case TXNPayid
Language
Click Try It! to start a request and see the response here!