Discussing APIs and development related to customers, discounts, and order management.
I am building a Shopify app. I would like to be able to access the value of the authorization code associated with a transaction (usually a 6-digit number; printed on paper receipts). In the GraphQL API, this is what I am referring to:
{
order(id: "xxxx") {
transactions {
authorizationCode
}
}
}
So far in my experimentation with a test store and in-development app, we have only seen Stripe payment intent id's in the response. My questions are:
Hello OP, did you figure this one out?