- Payment Gateway Overview
- Getting Started
- Payment Methods
- Integration
- API Endpoints
- APIs
- Authorisation
- Order
- Payment
- Refund
- Settlement
- Split Settlement
- E-Commerce Plugins
- Payment Button
- Qr Code
- UPI Mandate
- Payment Links
- Authorisation
Get UPI Transaction Status
GET
/pay/checkout/status/upi/{transactionId}
Request
Path Params
transactionId
string
required
Example:
EK1743074262175e8KIO
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/pay/checkout/status/upi/EK1743074262175e8KIO'
Responses
🟢200OK
application/json
Body
response_code
integer <int32>
optional
response_message
string
optional
payload
object (UpiStatusResponse)
optional
status
enum<string>
optional
Allowed values:
SUCCESSFAILEDPROCESS
transactionMessage
string
optional
orderId
string
optional
Example
{
"response_code": 0,
"response_message": "string",
"payload": {
"status": "SUCCESS",
"transactionMessage": "string",
"orderId": "string"
}
}