**Source URL:** https://limited.veevavault.dev/qualityone/vault-api/api-reference/21.1/multi-document-workflows/retrieve-all-multi-document-workflows.md

# Retrieve All Multi-Document Workflows



Retrieve all available multi-document workflows that can be initiated on a set of documents which:

* The authenticated user has permissions to view or initiate

* Can be initiated through the API

<Endpoint path="/api/{version}/objects/documents/actions" method="GET"></Endpoint>

## Headers {#headers}

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

## Query Parameters {#query-parameters}

<FieldTable>
| Name | Description |
| --- | --- |
| `loc` | When localized (translated) strings are available, retrieve them by setting `loc` to `true`. |
</FieldTable>

## Request {#request}

<CodeExample title="">
```
curl -X GET -H "Authorization: {SESSION_ID}" \
https://myvault.veevavault.com/api/18.3/objects/documents/actions

```
</CodeExample>

## Response {#response}

<CodeExample title="">
```
{
    "responseStatus": "SUCCESS",
    "data": [
        {
            "name": "Objectworkflow.clinical_study_report_approval__c",
            "label": "Clinical Study Report Approval",
            "type": "multidocworkflow"
        },
        {
            "name": "Objectworkflow.medical_docs_review_and_approval__c",
            "label": "Medical Docs Review and Approval",
            "type": "multidocworkflow"
        }
    ]
}

```
</CodeExample>

## Response Details {#response-details}

On SUCCESS, the response lists all available multi-document workflows to initiate on a set of documents. For users without the *Workflow: Start* permission, the response returns an `INSUFFICIENT_ACCESS` error.



---

**Previous:** [Multi-Document Workflows](/qualityone/vault-api/api-reference/21.1/multi-document-workflows)  
**Next:** [Retrieve Multi-Document Workflow Details](/qualityone/vault-api/api-reference/21.1/multi-document-workflows/retrieve-multi-document-workflow-details)