> For the complete documentation index, see [llms.txt](https://docs.ggwp.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ggwp.com/jp/apidokyumento-puraibash/yz.md).

# ユーザー削除

\[ ベース URL: `api.ggwp.com`]

`DELETE` /privacy/v1/delete

## **説明**

GGWPプラットフォームからユーザーのデータを削除するためのAPIエンドポイント。

## **パラメータ**

`ボディ`: 次のフィールドを含む辞書:

* **user\_id**: 削除対象ユーザーの一意の識別子。

サンプル呼び出し:

```bash
curl --request DELETE 'https://api.ggwp.com/privacy/v1/delete' \
--header 'x-api-key: api_key' \\
--header 'Content-Type: application/json' \\
--data-raw '{
  "user_id": "<id1>"
}'
```

## **出力**

* 200 - 正常な操作

  ```json
  {
    "status": "success"
  }
  ```
* 400
  * 無効な入力（例: 欠落している *user\_id* または型が正しくない）
* 403
  * 無効な API キー、または API キーがありません
* 500
  * エラーレスポンス
