Last updated 5 months ago
Use this method to get the available payment methods for the cart.
Successful response.
"https://api.digitalriver.com/v1/shoppers/me/carts/active/payment-methods"
const response = await fetch('https://api.digitalriver.com/v1/shoppers/me/carts/active/payment-methods', { method: 'GET', headers: {}, }); const data = await response.json();
{ "uri": "https://api.digitalriver.com/v1/shoppers/me/carts/active/payment-methods", "applyPaymentMethod": { "uri": "https://api.digitalriver.com/v1/shoppers/me/carts/active/apply-payment-method" }, "paymentMethod": [ { "type": "americanExpress", "displayName": "American Express", "description": "American Express" } ] }