> For the complete documentation index, see [llms.txt](https://openapi-docs.exosp.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://openapi-docs.exosp.com/guide/organization/delete-member.md).

# 사용자 삭제하기

<mark style="background-color:green;">DELETE</mark> `https://openapi.exosp.com/organization/v1/member`

사용자 정보를 삭제하는 API 입니다.

### Request Body

<table><thead><tr><th width="249">항목</th><th>타입</th><th>설명</th></tr></thead><tbody><tr><td>name<mark style="color:red;">*</mark></td><td>string</td><td><strong>사용자 이름</strong></td></tr><tr><td>email<mark style="color:red;">*</mark></td><td>string</td><td><strong>사용자 메일</strong></td></tr></tbody></table>

### Response Schema

<table><thead><tr><th width="162">항목</th><th width="115">타입</th><th>설명</th></tr></thead><tbody><tr><td>code</td><td>int</td><td><p><strong>응답 처리 결과 코드</strong> </p><p>0 : 성공, 1 : 실패</p></td></tr><tr><td>message</td><td>string</td><td><p><strong>응답 처리 결과 메세지</strong></p><p>success : 성공, 그 외 : 실패</p></td></tr></tbody></table>

### Example

{% tabs %}
{% tab title="200 Success" %}

```javascript
curl -X 'DELETE' \
  'https://openapi.exosp.com/organization/v1/member' \
  -H 'accept: application/json' \
  -H 'x-exosp-access: YOUR_ACCESS_KEY' \
  -H 'x-exosp-secret: YOUR_ACCESS_SECRET' \
  -d '{
  "name": "tuser",
  "email": "tuser@exosp.com"
}'

{
  "code": 0,
  "message": "success"
}
```

{% endtab %}
{% endtabs %}
