/api/v2/order/refund-info/:order_id to retrieve the refund information of a specific order.{
"code": "number",
"message": "string",
"data": {
"order_id": "string",
"chain": "string",
"currency": "string",
"amount": "number",
"network_fee": "number",
"obtained": "number",
"from_addr": "string",
"to_addr": "string",
"refund_et": "number"
},
"result": "boolean"
}
code: The status code of the response.message: Additional information related to the response.data: An object containing the refund information with the following attributes:order_id: The unique identifier of the order.chain: The chain associated with the refund.currency: The currency of the refund.amount: The refunded amount.network_fee: The network fee for the refund.obtained: The obtained amount.from_addr: The address from which the refund was initiated.to_addr: The address to which the refund was sent.refund_et: The timestamp for the refund.result: A boolean indicating the result of the request.curl --location 'https://dashboard.aurpay.net/api/v2/order/refund-info/20240614061316661529'{
"code": 0,
"message": "ok",
"data": {
"order_id": "20240614061316661529",
"chain": "TRX",
"currency": "USDT-TRC20",
"amount": 7.6883,
"network_fee": 0.353,
"obtained": 7.3353,
"from_addr": "TMiJBaNdRVABNhZGwBx5vKWYCafCwGzuWn",
"to_addr": "TFMsMzcQEmqEAxjaGnjQCE2TaeJYuHhCrF",
"refund_et": 60
},
"result": true
}