**Source URL:** https://limited.veevavault.dev/sitevault/vault-api/api-reference/25.3/document-lifecycle-workflows/document-workflows/retrieve-all-document-workflows

# Retrieve All Document Workflows

Retrieve all available 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" />

## Headers

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

## Query Parameters

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

## Request

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

## Response

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

## Response Details

On `SUCCESS`, the response lists all available document workflows and includes the following:

<FieldTable>
| Name | Description |
| --- | --- |
| `name` | The workflow name. |
| `label` | UI Label for the workflow. |
| `type` | Type of workflow. |
| `cardinality` | Indicates how many contents (`One`, `OneOrMany`) can be included in a workflow. |
</FieldTable>

For users without the *Workflow: Start* permission, the response returns an `INSUFFICIENT_ACCESS` error.

---

**Previous:** [Document Workflows](/sitevault/vault-api/api-reference/25.3/document-lifecycle-workflows/document-workflows)  
**Next:** [Retrieve Document Workflow Details](/sitevault/vault-api/api-reference/25.3/document-lifecycle-workflows/document-workflows/retrieve-document-workflow-details)