> 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/edit-personal-information.md).

# Edit Personal Information

Provides a feature for customers to view and edit their personal information.

Using the following APIs, customers can update personal information such as name, contact number, and email address, and strengthen their security.

It is also used to change passwords or modify other personal information.

***

## Editing Personal Information <a href="#plus" id="plus"></a>

Clicking Change Information/Withdraw Membership in the My Page full menu takes you to the Edit Personal Information page.

To access the Edit Personal Information page, you must complete the password verification process.

<div align="center"><img src="https://tech.x2bee.com/download/attachments/266111071/FO%20API%20%ED%99%9C%EC%9A%A9%ED%95%98%EA%B8%B0-%EA%B0%9C%EC%9D%B8%EC%A0%95%EB%B3%B4%20%EC%88%98%EC%A0%95.drawio.png" alt=""> <img src="https://tech.x2bee.com/download/attachments/266111071/FO%20API%20%ED%99%9C%EC%9A%A9%ED%95%98%EA%B8%B0%20-%20%EA%B0%9C%EC%9D%B8%EC%A0%95%EB%B3%B4%ED%8E%98%EC%9D%B4%EC%A7%80.drawio.png" alt=""></div>

### 1. Verifying Password <a href="#id-1" id="id-1"></a>

Enter the set password and click the \[Confirm] button to proceed with the password verification process. For social members, the mobile identity verification process is used instead.

* **Verify Password (**[🔗View API >](https://api.x2bee.com/content?msa=member\&depth=%ED%9A%8C%EC%9B%90%EA%B3%B5%ED%86%B5/checkCurrentPassword))\
  Verifies the member's current password.

```
POST /v1/member/checkCurrentPassword 
```

### 2. Saving Personal Information <a href="#id-2" id="id-2"></a>

Edit the personal information and click the \[Save] button to save the changes.

* **Edit Personal Information(**[🔗View API >](https://api.x2bee.com/content?msa=member\&depth=%ED%9A%8C%EC%9B%90%EA%B4%80%EB%A6%AC/modifyMemberInfo))

The items that can be changed for personal information are as follows.

-> Mobile number/date of birth/address/email/marketing information consent (email, SMS)

```
PUT /v1/member/modifyMemberInfo 
```

### 3. Changing Password <a href="#id-3" id="id-3"></a>

On the Edit Personal Information page, clicking the \[Change] button next to Password displays the password change popup.

* **Change Password** ([🔗View API >](https://api.x2bee.com/content?msa=member\&depth=%EC%95%84%EC%9D%B4%EB%94%94%20%EB%B9%84%EB%B0%80%EB%B2%88%ED%98%B8%EC%B0%BE%EA%B8%B0/modifyPassword))

  Password changes are processed in one of three ways.

  1. Change request after 90 days: Updates the member's password change timestamp to the moment the button is clicked.
  2. Immediate change: When accessed after password verification on a previous page, the password can be changed without re-verifying the current password.
  3. Change after current password verification: The password is changed by entering the current password and a new password.

```
PUT /v1/member/changePassword
```
