# Profile Delete

Profiles Delete API header parameter in Content-Type application/json and body in data raw (application/json) send.

#### **Permanently delete a user**

User Delete Requests allow you to irrevocably remove data about a User. After creating a User Delete Request, the User’s data will be hard-deleted. This deletion cannot be cancelled or reversed.

User Delete Requests can be created via a **POST** to **<https://app.acquire.io/profile/lead/delete>**

| Parameter         | Value                                            |
| ----------------- | ------------------------------------------------ |
| **Path**          | <https://app.acquire.io/api/profile/lead/delete> |
| **Method**        | POST                                             |
| **Authorization** | Bearer **\[YOUR\_API\_AUTH\_TOKEN]**             |
| **Content-type**  | application/json                                 |

#### **Body**raw(application/json)

```javascript

{
  "id": [
    3112
  ]
}

```

#### **Response JSON Format**

```javascript

{
    "success": true,
    "error": null,
    "data": "Selected profile(s) successfully deleted!"
}

```

#### **Hard delete**

{% hint style="info" %}
&#x20;**Important:** If you delete a profile/lead after you can not restore and access user’s data.
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.acquire.io/master/rest-apis/profiles-api/profile-delete.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
