A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
Hi,
I am experiencing a strange issue.
I want to query a single payout like here https://help.shopify.com/en/api/reference/shopify_payments/payout#show-2020-01
I submitted a query through:
/admin/api/2019-10/shopify_payments/balance/transactions.json?payout_id=xxxxx
But there are items missing when comparing the response to that's visible in the admin /admin/payments/payouts/xxxxx
The request header is {'X-Shopify-Access-Token': 'my_very_secret_key', 'cache-control': 'no-cache'}
Solved! Go to the solution
This is an accepted solution.
SOLVED
It was just a pagination issue. As quick fix, just added the limit=250 to the URL:
/admin/api/2019-10/shopify_payments/balance/transactions.json?limit=250&payout_id=xxxxx
This is an accepted solution.
SOLVED
It was just a pagination issue. As quick fix, just added the limit=250 to the URL:
/admin/api/2019-10/shopify_payments/balance/transactions.json?limit=250&payout_id=xxxxx