# Managing a shopper's account

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. Here is a sample cURL request:

{% tabs %}
{% tab title="cURL" %}

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

{% endtab %}
{% endtabs %}

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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.digitalriver.com/commerce-api/shopper-apis/shoppers/managing-a-shoppers-account.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
