**Source URL:** https://limited.veevavault.dev/qualityone/vault-api/api-reference/25.3/workflows/bulk-active-workflow-actions/retrieve-bulk-workflow-actions

# Retrieve Bulk Workflow Actions

Retrieve all available workflow actions that can be initiated on a workflow which:

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

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

## Headers

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

## Request

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

## Response

<CodeExample title="">
```json
{
   "responseStatus": "SUCCESS",
   "data": [
       {
           "name": "canceltasks",
           "label": "Cancel Tasks"
       },
       {
           "name": "cancelworkflows",
           "label": "Cancel Workflows"
       },
       {
           "name": "reassigntasks",
           "label": "Reassign Tasks"
       },
       {
           "name": "replaceworkflowowner",
           "label": "Replace Workflow Owner"
       }
   ]
}
```
</CodeExample>

## Response Details

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

<FieldTable>
| Name | Description |
| --- | --- |
| `name` | The workflow action name. |
| `label` | The workflow action label as seen in the UI. |
</FieldTable>

---

**Previous:** [Bulk Active Workflow Actions](/qualityone/vault-api/api-reference/25.3/workflows/bulk-active-workflow-actions)  
**Next:** [Retrieve Bulk Workflow Action Details](/qualityone/vault-api/api-reference/25.3/workflows/bulk-active-workflow-actions/retrieve-bulk-workflow-action-details)