Hi,
we do get Shopify Payment transaction data via REST API. This works really well except for one day in one of our stores.
We can see transaction data for payoutID: 72454570045 in the Shopify backend: /admin/payments/payouts/72454570045
But if we try to get the data via API, we do not get any data.
We use GET admin/api/2021-07/shopify_payments/balance/transactions.json?payout_status=paid&limit=250&payout_id=72454570045
and get this result, without transactions:
[transactions] => Array
(
[0] => stdClass Object
(
[id] => 1721707266109
[type] => payout
[test] =>
[payout_id] => 72454570045
[payout_status] => paid
[currency] => EUR
[amount] => -1464.87
[fee] => 0.00
[net] => -1464.87
[source_id] => 72454570045
[source_type] => payout
[source_order_id] =>
[source_order_transaction_id] =>
[processed_at] => 2021-08-26T03:38:35+02:00
)
)
If we do the same for other payouts everything works perfectly fine.
Seems like there is some data missing for this single day.
Has anyone experienced something like this?