# 2 Checkout Order Status

# Brief Description
  • Get Checkout Information by mchOrderId
# Request Method
  • /api/v1/checkout/state
# Request Method
  • POST
# Request Body Parameters
parameter name Is it mandatory type of data length example description
appId mandatory string - - Application App ID
appName mandatory string - - Application Name
param mandatory string - - Request Body
sign mandatory string - 45eebd745dcf0b5f6d6f9fcde28cd9fe8116a892 Sign
# Params
parameter name Is it mandatory type of data length example description
mchOrderId mandatory string - CCP20220428011068111 Merchant Order ID
timestamp mandatory long - 1678356680000 Millisecond Timestamp
# Successful response example

transactionStatus Reference List

{
    "code": 1000,
    "message": "success",
    "data": {
        "mchOrderId": "TEST123451234500004",
        "checkoutId": "CH1007669370860774953",
        "amount": 5000,
        "transactionStatus": "PENDING",
        "createTime": "2022-11-25 18:07:41",
        "returnTime": "2022-12-15 11:52:35",
        "appName": "PayCools",
        "channelCode": "GCASH_URL",
        "remark": null,
        "callbackUrl": ""
    }
}
# Failed Response Example
{
  "code": 1008,
  "message": "Transaction Not Found",
  "data": null
}