**Source URL:** https://limited.veevavault.dev/medical/vault-api/api-reference/24.3/documents/document-annotations/delete-annotations.md

# Delete Annotations



Delete multiple annotations. You must have *Annotate* permission on the specified document versions to delete annotations. Learn more about permissions required to [delete annotations](https://platform.veevavault.help/en/lr/9777) and [delete brought forward annotations](https://platform.veevavault.help/en/lr/18648) in Vault Help.

<Endpoint path="/api/{version}/objects/documents/annotations/batch" method="DELETE"></Endpoint>

## Headers {#headers}

<FieldTable>
| Name | Description |
| --- | --- |
| `Content-Type` | `text/csv` or `application/json` |
| `Accept` | `application/json` (default), `text/csv`, or `application/xml` |
</FieldTable>

## Body Parameters {#body-parameters}

<Aside>Some HTTP clients do not support `DELETE` requests with a
body. As a workaround for these cases, you can simulate this request using the
`POST` method and using the `_method=DELETE` query parameter.

</Aside>
Upload parameters as a JSON or CSV file. You can delete up to 500 annotations per batch.

## Request {#request}

<CodeExample title="">
```
curl -X DELETE -H "Authorization: {SESSION_ID}" \
-H "Content-Type: text/csv" \
--data-binary @"C:\Vault\Documents\delete_annotations.csv" \
https://myvault.veevavault.com/api/v24.2/objects/documents/annotations/batch

```
</CodeExample>

## Response {#response}

<CodeExample title="">
```
{
   "responseStatus": "SUCCESS",
   "data": [
       {
           "responseStatus": "SUCCESS",
           "document_version_id__sys": "1_0_1",
           "id__sys": "58",
           "global_version_id__sys": "119899_1_1"
       }
   ]
}

```
</CodeExample>

---

**Previous:** [Read Replies of Parent Annotation](/medical/vault-api/api-reference/24.3/documents/document-annotations/read-replies-of-parent-annotation)  
**Next:** [Export Document Annotations to PDF](/medical/vault-api/api-reference/24.3/documents/document-annotations/export-document-annotations-to-pdf)