**Source URL:** https://limited.veevavault.dev/commercial/vault-api/api-reference/26.1/object-lifecycle-workflows/multi-record-workflows/retrieve-all-multi-record-workflows

# Retrieve All Multi-Record Workflows

Retrieve all available multi-record workflows which:

*   The authenticated user has permissions to view or initiate
*   Can be initiated through the API

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

## Headers

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

## Request

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

## Response

<CodeExample title="">
```json
{
   "responseStatus": "SUCCESS",
   "data": [
       {
           "name": "Objectworkflow.approval__c",
           "label": "Review & Approval Workflow",
           "type": "multirecordworkflow",
           "cardinality": "OneOrMany"
       }
   ]
}

```
</CodeExample>

## Response Details

On `SUCCESS`, the response 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:** [Multi-Record Workflows](/commercial/vault-api/api-reference/26.1/object-lifecycle-workflows/multi-record-workflows)  
**Next:** [Retrieve Multi-Record Workflow Details](/commercial/vault-api/api-reference/26.1/object-lifecycle-workflows/multi-record-workflows/retrieve-multi-record-workflow-details)