**Source URL:** https://limited.veevavault.dev/regulatory/vault-api/api-reference/24.2/workflows/retrieve-workflow-actions.md

# Retrieve Workflow Actions



Retrieve all available workflow actions that can be initiated on a specific workflow.

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

## Headers {#headers}

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

## URI Path Parameters {#uri-path-parameters}

<FieldTable>
| Name | Description |
| --- | --- |
| `{workflow_id}` | The workflow `id` field value. |
</FieldTable>

## Query Parameters {#query-parameters}

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

## Request {#request}

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

```
</CodeExample>

## Response {#response}

<CodeExample title="">
```
{
   "responseStatus": "SUCCESS",
   "data": [
       {
           "name": "cancel",
           "label": "Cancel"
       },
       {
           "name": "replaceworkflowowner",
           "label": "Replace Workflow Owner"
       },
       {
           "name": "addparticipants",
           "label": "Add Participants"
       }
   ]
}

```
</CodeExample>

## Response Details {#response-details}

On `SUCCESS`, the response lists all available workflow actions. Each action includes the following fields:

* `name` - The workflow action name used to initiate the workflow in the request below.

* `label` - The workflow action label as seen in the UI.



---

**Previous:** [Retrieve Workflow Details](/regulatory/vault-api/api-reference/24.2/workflows/retrieve-workflow-details)  
**Next:** [Retrieve Workflow Action Details](/regulatory/vault-api/api-reference/24.2/workflows/retrieve-workflow-action-details)