**Source URL:** https://general.veevavault.dev/commercial/vault-api/api-reference/20.2/bulk-active-workflow-actions/retrieve-bulk-workflow-actions.md

# Retrieve Bulk Workflow Actions



Retrieve all available workflow actions that can be initiated on a workflow in a Vault. In API v20.2, only `cancelworkflows` is supported.

<Endpoint path="/api/{version}/object/workflow/actions" method="GET"></Endpoint>

## Headers {#headers}

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

## Request {#request}

<CodeExample title="">
```
curl -L -X GET -H 'Authorization: {SESSION_ID}’ \
'https://myvault.veevavault.com/api/v20.2/object/workflow/actions'

```
</CodeExample>

## Response {#response}

<CodeExample title="">
```
{
   "responseStatus": "SUCCESS",
   "data": [
       {
           "name": "cancelworkflows",
           "label": "Cancel Workflows"
       }
   ]
}

```
</CodeExample>

## Response Details {#response-details}

On SUCCESS, the response lists all available workflow actions for a Vault.



---

**Previous:** [Bulk Active Workflow Actions](/commercial/vault-api/api-reference/20.2/bulk-active-workflow-actions)  
**Next:** [Retrieve Cancel Workflow Action Details](/commercial/vault-api/api-reference/20.2/bulk-active-workflow-actions/retrieve-cancel-workflow-action-details)