Hi,
I think the refund status api calling the wrong endpoint,
it's calling the txn status endpoint noy the Refund Status endpoint.
I'm doing like:
$refundStatus = PaytmWallet::with('refund_status');
$refundStatus->prepare([
'order' => '3-1652688667',
'reference' => 'R1-3-1652688667',
]);
$refundStatus->check();
it retuns status of the received payment's status, not the refunded txn.
Thank you.