**Source URL:** https://general.veevavault.dev/medical/vault-api/api-reference/26.2/logs/download-workflow-activity-log

# Download Workflow Activity Log

Download the daily log of workflow operations in your Vault. Learn more about [Workflow Activity logs in Vault Help](https://platform.veevavault.help/en/gr/14341#workflow-activity-log).

<Endpoint path="/api/{version}/logs/workflow/{date}/file" method="GET" />

## Headers

| Name | Description |
| --- | --- |
| `Accept` | `application/json` (default) or `application/xml` |

## URI Path Parameters

<FieldTable>
| Name | Description |
| --- | --- |
| `{date}` | The date of the requested Workflow Activity log. Date is in UTC and follows the format `YYYY-MM-DD`. Cannot be more than 90 days in the past. |
</FieldTable>

## Request

<CodeExample title="">
```bash
curl -X GET -H "Authorization: {AUTH_VALUE}" \
https://myvault.veevavault.com/api/v26.1/logs/workflow/2026-01-17/file
```
</CodeExample>

## Response

<CodeExample title="">
```bash
Content-Type: application/octet-stream
Content-Disposition: attachment;filename*=UTF-8''19523-WorkflowActivity-2026-01-17.zip
```
</CodeExample>

## Response Details

On `SUCCESS`, Vault retrieves the log from the specified date as a .ZIP file. The HTTP Response Header `Content-Type` is set to `application/octet-stream`, and the HTTP Response Header `Content-Disposition` contains a filename component which can be used when naming the local file.

---

**Previous:** [Download SDK Runtime Log](/medical/vault-api/api-reference/26.2/logs/download-sdk-runtime-log)  
**Next:** [VQL Query Profiler](/medical/vault-api/api-reference/26.2/logs/vql-query-profiler)