Skip to content

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.

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/v20.2/object/workflow/actions'
{
   "responseStatus": "SUCCESS",
   "data": [
       {
           "name": "cancelworkflows",
           "label": "Cancel Workflows"
       }
   ]
}

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