Skip to content

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
GET/api/{version}/object/workflow/actions
NameDescription
Acceptapplication/json (default) or application/xml
curl -L -X GET -H "Authorization: {SESSION_ID}" \
https://myvault.veevavault.com/api/v25.1/object/workflow/actions
{
   "responseStatus": "SUCCESS",
   "data": [
       {
           "name": "canceltasks",
           "label": "Cancel Tasks"
       },
       {
           "name": "cancelworkflows",
           "label": "Cancel Workflows"
       },
       {
           "name": "reassigntasks",
           "label": "Reassign Tasks"
       },
       {
           "name": "replaceworkflowowner",
           "label": "Replace Workflow Owner"
       }
   ]
}

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