**Source URL:** https://limited.veevavault.dev/vault-api/api-reference/26.1/logs/download-workflow-activity-log.md

# 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/lr/14341#workflow-activity-log).

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

## Headers {#headers}

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

## URI Path Parameters {#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 {#request}

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

```
</CodeExample>

## Response {#response}

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

```
</CodeExample>

## Response Details {#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](/vault-api/api-reference/26.1/logs/download-sdk-runtime-log)  
**Next:** [File Staging](/vault-api/api-reference/26.1/file-staging)