Check order status

Endpoint: POST api/v1/Instify/GetStatus

Headers:

X-CLIENT-KEYX-CLIENT-IDX-SECRET-KEY
YOUR KEYYOUR IDYOUR SECREAT

Request Body (JSON):

Content-Type: application/json

API Request ParameterAPI Request Parameter Detail
searchType1 -- > Search by: Order Id
2 -- >Search by: Transaction Id will receive from
callback

📘

TransactionId will be updated on the return URL , Example : https://returnurl.com?txn=ND28112024115832519148

{
 "searchType": "1", 
 "orderId": "1558441521", 
 "transactionId": "" 
} 
 (Or) 
{ 
 "searchType": "2", 
 "orderId": "", 
 "transactionId": "ND28112024115832519148" 
}


Response (200 OK - Success):

{
 "responseCode": "200", 
 "responseMessage": "Success", 
 "data": { 
 "merchantRefId": "11", 
 "orderId": "1558441521", 
 "transactionId": 
"ND28112024115832519148", 
 "amount": "103.00", 
 "customerName": "sa", 
 "customerMobile": "91766", 
 "customerEmail": "sa", 
 "transactionStatus": "Pending", 
 "transactionDate": "11/28/2024 11:58:32 
AM", 
 "refundStatus": "", 
 "refundType": "", 
 "merchantName": "company1", 
 "settlementStatus": "", 
 "settlementDate": "", 
 "payMode": "cc" 
 } 
}