Query Collection UPI
Check whether the collection UPI exists
Endpoint
POST /cashin/india/order/checkUpi
Request Headers
| Name | Required | Example | Description |
|---|---|---|---|
Content-Type | Yes | application/json | |
lang | No | en | Response language: zh Chinese, en English, pt Portuguese |
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
mchId | integer | Yes | Merchant ID |
timestamp | integer | Yes | Current time — Unix timestamp in seconds |
sign | string | Yes | Signature |
upi | string | Yes | UPI |
Request Example
json
{
"mchId": 10004,
"timestamp": 16899293059,
"sign": "xxxxxxxxxxxx",
"upi": "xxxxxxxxxxxx"
}Response Parameters
| Field | Type | Required | Description |
|---|---|---|---|
status | integer | Yes | |
msg | null | Yes | |
data | object | Yes | |
data.upi | string | Yes | UPI |
data.exist | boolean | Yes | Whether it exists |