# Check payment status
GET https://connect-global-api.paytriot.co.uk/payment/get_payment
# Parameters
# Path
| Parameter | Type | Description |
|---|---|---|
| terNo * | string | Merchant identifier given by Paytriot. |
| orderNo * | string | Merchant's generated ID |
| tradeNo * | string | Transaction flow number |
# Example
# Sample request
curl -X POST https://connect-global-api.paytriot.co.uk/payment/get_payment\
-H 'Content-Type: application/json' \
-d ' {
"terNo": "70000000",
"tradeNo": "20000000000000000123",
"orderNo": "20200000000000000093"
}'
# Sample response
{
"orderAmount": "70",
"orderCurrency": "USD",
"orderNo": "20200000000000000093",
"queryCode": "0000",
"queryMsg": "QUERY SUCCESS",
"refundAmount": "0.00",
"refundStatus": "-1",
"refusalAmount": "0.00",
"refusalStatus": "-1",
"terNo": "70000000",
"tradeNo": "20000000000000000123",
"tradeStatus": "1",
"transDate": "2022-05-17 17:23:01",
"website": "paytriot.co.uk"
}