> 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/membership-withdrawal.md).

# Membership Withdrawal

Provides the membership withdrawal feature.

Using the following APIs, the customer's personal information is protected through masking and separate storage.

Also, once membership withdrawal is completed, the customer can no longer receive member-exclusive benefits of the X2BEE shopping mall.

***

## Membership Withdrawal <a href="#plus" id="plus"></a>

Clicking Membership Withdrawal in the My Page full menu takes you to the Membership Withdrawal page.

To access the Membership Withdrawal page, you must complete the password verification process.

![](https://tech.x2bee.com/download/attachments/269845158/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)

### 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.

* **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. Entering the Withdrawal Reason <a href="#id-2" id="id-2"></a>

Retrieves the withdrawal reason options for membership withdrawal.

* **View Common Code List (**[🔗View API >](https://api.x2bee.com/content?msa=common\&depth=%EA%B3%B5%ED%86%B5/getGrpCdList))\
  Retrieves the codes for membership withdrawal reasons.

```
POST /v1/common/getGrpCdList 
```

### 3. Withdrawing Membership <a href="#id-3" id="id-3"></a>

Clicking the **\[Withdraw Membership]** button checks withdrawal eligibility, then proceeds through the withdrawal reason selection step, and finally processes the withdrawal.

<details open>

<summary><strong>3.1 Checking Withdrawal Eligibility</strong></summary>

Clicking the \[Withdraw Membership] button takes you to the withdrawal guidance page, where the process to check withdrawal eligibility proceeds.

* **Check Membership Withdrawal Eligibility (**[🔗View API >](https://api.x2bee.com/content?msa=member\&depth=%ED%9A%8C%EC%9B%90%ED%83%88%ED%87%B4/chkWithdrawalMember))\
  Checks membership withdrawal eligibility.

```
POST /v1/withdrawal/chkWithdrawalMember 
```

</details>

<details open>

<summary><strong>3.2. Withdrawing Membership</strong></summary>

If the member is determined eligible for withdrawal, enter the withdrawal reason and click the \[Withdraw Membership] button to complete the withdrawal process. Once withdrawal is successfully processed, the member is logged out.

* **Withdraw Membership (**[🔗View API >](https://api.x2bee.com/content?msa=member\&depth=%ED%9A%8C%EC%9B%90%ED%83%88%ED%87%B4/withdrawal))\
  Separately stores the data after membership withdrawal.

```
POST /v1/withdrawal/procWithdrawal
```

</details>
