> For the complete documentation index, see [llms.txt](https://tech.x2bee.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tech.x2bee.com/api-guide/api-guides-en/store-front-api/my-page/delivery-address-management.md).

# Delivery Address Management

Provides a feature for setting and managing delivery addresses when placing an order.

Provides APIs so customers can directly register, edit, and delete delivery addresses, and select delivery options.

***

## Delivery Address Management <a href="#plus" id="plus"></a>

Clicking \[Delivery Address Management] in the My Page full menu takes you to the Delivery Address Management page.

To access the Delivery Address Management page, you must complete the password verification process.

<div align="center"><img src="https://tech.x2bee.com/download/attachments/266111172/FO%20API%20%ED%99%9C%EC%9A%A9%ED%95%98%EA%B8%B0%20-%20%EB%B0%B0%EC%86%A1%EC%A7%80%20%EA%B4%80%EB%A6%AC.drawio.png" alt=""></div>

### 1. Registering a New Delivery Address <a href="#id-1" id="id-1"></a>

Clicking the **\[Register Delivery Address]** button takes you to the new delivery address registration popup.

Enter the delivery address information and click the **\[Register**] button to register the new delivery address.

* **Register Member Delivery Address (**[🔗View API >](https://api.x2bee.com/content?msa=member\&depth=%ED%9A%8C%EC%9B%90%EB%B0%B0%EC%86%A1%EC%A7%80/insertDlvpInfo))\
  Registers a delivery address list for the member number.

```
POST /v1/front/dlvpInfo 
```

### 2. Viewing Delivery Addresses <a href="#id-2" id="id-2"></a>

You can view the delivery address information registered by the customer.

* **View Member Delivery Address List (**[🔗View API >](https://api.x2bee.com/content?msa=member\&depth=%ED%9A%8C%EC%9B%90%EB%B0%B0%EC%86%A1%EC%A7%80/getDlvpInfoList))\
  Retrieves the delivery address list for the member number.

```
GET /v1/front/dlvpInfo 
```

### 3. Setting as the Default Delivery Address <a href="#id-3" id="id-3"></a>

Clicking **\[Set as Default Delivery Address]** marks it as the default delivery address, which can then be registered as the default delivery address on the order form.

* **Save Member Default Delivery Address (**[🔗View API >](https://api.x2bee.com/content?msa=member\&depth=%ED%9A%8C%EC%9B%90%EB%B0%B0%EC%86%A1%EC%A7%80/dlvpDetailInfo))\
  Changes the delivery address at the selected delivery address sequence number to the member's default delivery address.

```
PUT /v1/front/dlvpDetailInfo 
```

### 4. Deleting a Delivery Address <a href="#id-4" id="id-4"></a>

Clicking the **\[Delete]** button deletes the registered member delivery address.

* **Delete Member Delivery Address (**[🔗View API >](https://api.x2bee.com/content?msa=member\&depth=%ED%9A%8C%EC%9B%90%EB%B0%B0%EC%86%A1%EC%A7%80/deleteDlvpInfo))\
  Finds and deletes the selected delivery address sequence number.

```
DEL /v1/front/dlvpInfo 
```

### 5. Editing Delivery Address Information <a href="#id-5" id="id-5"></a>

Clicking **\[Edit]** displays the delivery address edit popup.

Edit the delivery address information and click the **\[Save]** button to complete the delivery address edit.

* **Edit Member Delivery Address (**[🔗View API >](https://api.x2bee.com/content?msa=member\&depth=%ED%9A%8C%EC%9B%90%EB%B0%B0%EC%86%A1%EC%A7%80/updateDlvpInfo))\
  Edits the delivery address using the information the user entered in the delivery address edit popup form.

```
PUT /v1/front/dlvpInfo 
```
