We are searching for a API call to list all the available Shopify payment methods. We need to do a maping between these methods and custom methodes inside a POS system. Is there any way to retrieve this data by API? We already tried this call:
‘/admin/api/2023-04/payment_methods.json’
Hey @StoreContrl_Adm
- there’s not currently a way to query payment gateways via the API, but if you did just need specific payment methods (for example, the digital wallets a shop supports or the types of credit cards it can take), there is a way you can query those values through the storefront API. An example query might look something like this:
{
shop {
paymentSettings {
enabledPresentmentCurrencies
acceptedCardBrands
supportedDigitalWallets
}
}
}
Hope this helps!
Al | Shopify Developer Support