Getting the available payment methods for the cart
Learn how to get the available payment methods for a cart.
curl --location -g --request GET ' https://api.digitalriver.com/v1/shoppers/me/carts/active/payment-methods' \
--header 'Authorization: Basic {{access_token}}' \
...{
"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"
}
]
}Last updated