Retrieve Workflow Task Actions
Retrieve all available actions that can be initiated on a given workflow task.
GET
/api/{version}/objects/objectworkflows/tasks/{task_id}/actionsHeaders
Section link for Headers| Name | Description |
|---|---|
Accept | application/json (default) or application/xml |
URI Path Parameters
Section link for URI Path ParametersRequest
Section link for Requestcurl -X GET -H "Authorization: {SESSION_ID}" \
https://myvault.veevavault.com/api/v24.1/objects/objectworkflows/tasks/7201/actionsResponse
Section link for Response{
"responseStatus": "SUCCESS",
"data": [
{
"name": "complete",
"label": "Complete"
},
{
"name": "cancel",
"label": "Cancel"
}
]
}