Query Push Status
This API is used to check the parameter push status.
ENV
PROTOCOL
METHOD
API URL
UAT
HTTP
POST
https://uat.paywizard.biz/ovstrade/varsheet/queryStatus
PROD
HTTP
POST
https://portal.paywizard.biz/ovstrade/varsheet/queryStatus
Http Header
Content-Type:application/json
jwt-token:Dev Token
Request
VAR
NAME
MANDATORY
TYPE
clientId
Developer ID
String
pushId
Push ID
String
Request Sample
{
"clientId": "client12345",
"pushId": "768206988353077248"
}
Response
VAR
NAME
MANDATORY
TYPE
EXAMPLE
描述
code
Return Code
Int
200
Return code 200 indicates a normal transaction; any code other than 200 indicates an anomaly.
msg
Return Message
String
success
data
Return Result
Object
--pushId
Push ID
String
--status
Push Status
Integer
0: Parameter push in progress 1: Parameter push successful 2: Parameter push failed
timestamp
Date/Time(UTC)
String
2024-07-23 17:57:00
Response Sample:
{
"code": 200,
"msg": "success",
"data": {
"pushId": "768206988353077248",
"status": 0
},
"timestamp": "2024-08-12 14:45:54"
}
Last updated