Order Inquiry API
Endpoint
POST {BASE_URL}/api/v2.0/payments/inquiryPayment
The Order Inquiry API allows querying the details of a payment order by the AlphaPay order ID.
Order Inquiry Request Body
{
"paymentId": "string"
}
Order Inquiry Response
{
"scenarioCode": "APP",
"paymentRequestId": "string",
"order": {
"orderAmount": {
"value": "string",
"currency": "CAD"
},
"description": "string",
"notifyUrl": "string",
"redirectUrl": "string"
},
"paymentCreateTime": "2019-08-24T14:15:22Z",
"paymentExpireTime": "2019-08-24T14:15:22Z",
"paymentTime": "2019-08-24T14:15:22Z",
"paymentId": "string",
"paymentStatus": "PAYMENT_IN_PROCESS",
"result": {
"resultCode": "string",
"resultMessage": "string",
"resultStatus": "S"
}
}