Skip to main content

Query Deposit Order (Japan)

Query a single Japanese Yen (JPY) 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

Successful Response

{
"error_code": "0000",
"data": {
"payment_id": "DEMOPM0123456",
"payment_cl_id": "order_20260112001",
"amount": 50000,
"real_amount": 50000,
"fee": 2500,
"status": 2,
"payment_cl_name": "田中太郎",
"create_time": 1737543600,
"success_time": 1737543700
}
}

Error Response Example

{
"error_code": "0050",
"error_msg": "查无订单!"
}

Response Parameter Description

ParameterTypeDescription
error_codeStringError code, see Global Error Codes
error_msgStringError message (returned when error_code is not "0000")
payment_idStringPlatform Order ID
payment_cl_idStringMerchant Order ID
amountIntSubmitted 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. If you have not obtained it, please contact system personnel
  • Amount is in Japanese Yen (cents)