Skip to main content

Query Deposit Order (Australia)

Query a single Australian Dollar (AUD) deposit order by merchant order ID.

Request Information

  • Request URL: /gateway/api/v2/payments/{payment_cl_id}
  • Method: GET

Request Headers

ParameterTypeDescription
AuthorizationString{authorization} Authorization token assigned to the platform by the system

Path Parameters

ParameterRequiredTypeDescription
payment_cl_idYesStringMerchant Order ID

Response Example

Success Response

{
"error_code": "0000",
"data": {
"payment_id": "DEMOPM0123456",
"payment_cl_id": "order_20260112001",
"amount": 10000,
"real_amount": 10000,
"fee": 500,
"status": 2,
"payment_cl_name": "JOHN SMITH",
"create_time": 1737543600,
"success_time": 1737543700
}
}

Error Response Example

{
"error_code": "0050",
"error_msg": "Order not found!"
}

Response Parameter Description

ParameterTypeDescription
error_codeStringStatus Code
error_msgStringMessage (returned when error_code is not "0000")
payment_idStringPlatform Order ID
payment_cl_idStringMerchant Order ID
amountIntOrder amount
real_amountIntActual paid amount
feeIntTransaction fee
statusIntOrder status (0: Pending, 1: Processing, 2: Success, 3: Cancelled)
payment_cl_nameStringPayer name
create_timeIntCreation time (Unix timestamp)
success_timeIntPayment success time (Unix timestamp)

Remarks

  • authorization is the authorization token assigned to the platform by the system. Please contact the system administrator if you have not received it
  • Amount is in Australian Dollar (cents)