/api/v2/order/refund/:order_id.{
"order_id": "string",
"refund_status": "string",
"refund_amount": "number",
"refund_date": "string"
}
order_id: The unique identifier of the order.refund_status: The status of the refund, which can be one of the following: PENDING, SUCCESS, RESOLVED, PARTIAL, TERMINATED, REFUNDED.refund_amount: The amount refunded for the order.refund_date: The date and time when the refund was initiated.curl --location --request POST 'https://dashboard.aurpay.net/api/v2/order/refund/20240614061316661529' \
--header 'API-Key: <api-key>'{
"code": 0,
"message": "ok",
"data": {
"order_id": "20240614061316661529",
"chain": "TRX",
"currency": "USDT-TRC20",
"amount": 7.6883,
"network_fee": 0.3535,
"obtained": 7.3348,
"from_addr": "TMiJBaNdRVABNhZGwBx5vKWYCafCwGzuWn",
"to_addr": "TFMsMzcQEmqEAxjaGnjQCE2TaeJYuHhCrF",
"refund_et": 60
},
"result": true
}