**Source URL:** https://limited.veevavault.dev/qualityone/vault-api/api-reference/25.3/documents/document-renditions/update-multiple-document-renditions

# Update Multiple Document Renditions

Update or re-render document renditions in bulk.

*   The maximum CSV input file size is 1GB.
*   The values in the input must be UTF-8 encoded.
*   CSVs must follow the standard RFC 4180 format, with some [exceptions](/qualityone/vault-api/references/csv-rfc-deviations).
*   The maximum batch size is 500.

<Endpoint path="/api/{version}/objects/documents/batch/actions/rerender" method="POST" />

## Headers

<FieldTable>
| Name | Description |
| --- | --- |
| `Content-Type` | `text/csv` or `application/x-www-form-urlencoded` |
| `Accept` | `application/json` (default) or `text/csv` |
</FieldTable>

## Body Parameters

Upload parameters as a CSV file.

<FieldTable>
| Name | Description |
| --- | --- |
| `id`<Requiredness type="required" /> | The system-assigned ID of the document. |
| `major_version_number__v`<Requiredness type="required" /> | The major version number of the existing document. |
| `minor_version_number__v`<Requiredness type="required" /> | The minor version number of the existing document. |
</FieldTable>

## Request

<CodeExample title="">
```bash
curl -X PUT -H "Authorization: {SESSION_ID}" \
-H "Content-Type: application/json" \
-H "Accept: text/csv" \
--data-binary @"C:\Vault\Documents\update_document_renditions.csv" \
https://myvault.veevavault.com/api/v24.1/objects/documents/batch/actions/rerender
```
</CodeExample>

## Response

<CodeExample title="">
```json
{
    "responseStatus": "SUCCESS",
    "data": [
        {
            "responseStatus": "SUCCESS",
            "id": 1,
            "major_version_number__v": "0",
            "minor_version_number__v": "1"
        },
        {
            "responseStatus": "SUCCESS",
            "id": 2,
            "major_version_number__v": "0",
            "minor_version_number__v": "1"
        }
    ]
}
```
</CodeExample>

## Response Details

On `SUCCESS`, Vault returns whether each document rendition was successfully re-rendered.

---

**Previous:** [Upload Document Version Rendition](/qualityone/vault-api/api-reference/25.3/documents/document-renditions/upload-document-version-rendition)  
**Next:** [Replace Document Rendition](/qualityone/vault-api/api-reference/25.3/documents/document-renditions/replace-document-rendition)