Get Started

Status Check integration is used to determine the status of the payment intent. This enables you to take business actions or to respond to states that require further intervention.

Status Check API

              
                curl --location --request POST 'https://BASE URL/api/intent/check/status' \
                --header 'mid: 7xax0x7xcx5xdx2x2x4x' \
                --header 'password: dxbxbxex0x8xcxax3x4xfx6xc' \
                --header 'Content-Type: application/json' \
                --data-raw '{
                "identifier": "BM2252xxxxxxx309800"
                }'
              
            

API Response

You will receive response as mentioned below.

                
                  {
                    "amount": 5000,
                    "currency": "INR",
                    "transactionId": "BM2252XXXXX309800",
                    "customer_details": {
                      "email": "j***k@gmail.com",
                      "mobile": "********13"
                    },
                    "refund_items": [],
                    "orderId": "pay_OC3j9f5jg1SAmO5",
                    "payment_details": {
                      "type": "UPI",
                      "upi": {
                        "vpa": "saixxx.xxla@ybl"
                      }
                    },
                    "status": "CANCEL",
                    "message": "Transaction Cancelled by user"
                  }