When I’m looking at payouts in the shopify portal I’m able to see a Bank Reference for each payout, and my accounting team would love to use that to help link shopify payouts to our bank for reconciliation. I can see in the browser network calls that it’s pulling an externalTraceId from a payout object in GraphQL, but that doesn’t seem to be in any of the public api documentation. Is there any roadmap/plan to include that field in the ShopifyPaymentsPayouts?
Also if there is any quantity of pizza and beer I could offer shopify engineers to let us query ShopifyPaymentsPayouts by their gid just say the word
Hey @Nick_Lavalle,
You can use a Node query to get the payout by id
query Node {
node(id: "gid://shopify/ShopifyPaymentsPayout/123456789") {
id
... on ShopifyPaymentsPayout {
id
issuedAt
}
}
}
And on that note, if we both make it to editions.dev next year, we will share some and
Regarding the Bank reference, I do see that would be useful. I’ll check if it’s on the teams radar and if not submit a feature request for you.
If added, it will be listed in the developers changelog
Update: Digging in deeper I see Liam has looked in to this and brought it to our teams here: How to retrieve the Payout Bank Reference value from the Shopify Payments Payout - #5 by Liam-Shopify
So I can confirm it’s on the radar, but no firm date as of yet on implementation.
Oh I had no idea the node query existed, that is tremendously helpful. If my company is able to fly me out to it next year I’ll definitely take you up on that. Thanks Kyle