How can I identify when a charge has occurred? Specifically, I need to know the following things:
- What amount the customer was charged for the fulfillment, broken down by tax, freight and total line-item amount?
- Which API call should we use to determine whether the customer has been charged for freight?
- If the customer has been charged freight, how can we determine the exact freight charge?
Thanks,
Asma
Dylan
2
Hi @Asma_Saeed
There is a order_transactions/create webhook that fires during transactions created for orders.
But the payload itself won’t include details like the shipping freight information.
However, you should be able to use the Shopify Admin GraphQL to access that information which would be initiated by that event.
But I would just use the standard order/create webhook topic, you’ll have more complete information at the point the order is actually created.