Managing a shopper's account

Learn how to get a shopper's account information.

Managing a shopper's account involves accessing and updating account details to facilitate a seamless shopping experience. This guide will provide step-by-step instructions on retrieving account information, updating personal details, and managing payment and shipping information using the Commerce API. By following these instructions, you can ensure your shoppers have up-to-date information, streamlining their purchasing process and enhancing overall satisfaction.

Getting the shopper's account information

To get the shopper's account information, send a GET request to /v1/shoppers/me/account and include the authenticated shopper token. See Account query parameters for a description of the query parameters. Here is a sample cURL request:

curl --location --request GET 'https://api.digitalriver.com/v1/shoppers/me/account' \
--header 'authorization: bearer {Authenticated_Shopper_Token}'

You will receive a 200 OK response. The response includes redirecting a web page to update the billing, shipping, and payment details.

Last updated