# Delete note

## Delete a note

<mark style="color:red;">`DELETE`</mark> `https://{{account_id}}.acquire.io/api/v1/crm/note/{{noteId}}`

Delete a a note. The **noteId** must be passed in to the endpoint as a path parameter. **Warning**: The action cannot be undone.&#x20;

#### Path Parameters

| Name                                     | Type    | Description    |
| ---------------------------------------- | ------- | -------------- |
| noteId<mark style="color:red;">\*</mark> | integer | ID of the note |

#### Headers

| Name                                            | Type   | Description         |
| ----------------------------------------------- | ------ | ------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | Bearer {{API\_KEY}} |

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

```
{
  "data": {
    "success": true,
    "message": "Note has been deleted successfully."
  }
}
```

{% endtab %}
{% endtabs %}
