GraphQL Payment Method - Venmo

Hey there,

I’m trying to find how many orders used Venmo as payment.
I was able to retrieve gateway info (paypal, authorize.net, braintree, tiktok) and
some card info (visa, mastercard, discover), but how do I get whether Venmo was used during payment?

{
    orders(first:5) 
    {
        pageInfo {endCursor hasNextPage}
        nodes
        {   
            name
            transactions{
              status 
              gateway  
              paymentIcon{id altText} 
              paymentDetails {... on CardPaymentDetails{wallet paymentMethodName}} 
            }
        }
    }
}

How is Venmo added as a payment method? I’m not used to Venmo. Is it an express method, like Apple Pay and Google Pay, or a regular third party method under “Additional payment methods”?

To me it looks like both would be accessible in your query though.

Test query containing one of each:

If you have Venmo through a third party gateway - you’ll not be able to see what method you used inside that gateway, unless they name it something like the Mobilepay example above. Atleast of my knowledge.

1 Like