> 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/api-docs-privacy/user-removal.md).

# User Removal

\[ Base URL: `api.ggwp.com`]

`DELETE` /privacy/v1/delete

## **Description**

API endpoint to remove a user’s data from GGWP platform.

## **Parameters**

`body`: Dictionary containing the following fields:

* **user\_id**: unique identifier of the user whose data will be removed.

Sample Call:

```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>"
}'
```

## **Output**

* 200 - successful operation

  ```json
  {
    "status": "success"
  }
  ```
* 400
  * Invalid input (eg: missing *user\_id* or incorrect type)
* 403
  * Invalid or missing API key
* 500
  * Error response
