**Source URL:** https://limited.veevavault.dev/qualityone/vault-api/api-reference/22.3/workflows/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 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"></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/v21.1/object/workflow/actions

```
</CodeExample>

## Response {#response}

<CodeExample title="">
```
{
   "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 {#response-details}

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



---

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