workflows_list {civis} | R Documentation |
List Workflows
Description
List Workflows
Usage
workflows_list(
hidden = NULL,
archived = NULL,
author = NULL,
state = NULL,
scheduled = NULL,
limit = NULL,
page_num = NULL,
order = NULL,
order_dir = NULL
)
Arguments
boolean optional. If specified to be true, returns hidden items. Defaults to false, returning non-hidden items. | |
archived |
string optional. The archival status of the requested item(s). |
author |
string optional. If specified, return items from any of these authors. It accepts a comma-separated list of user IDs. |
state |
array optional. State of the most recent execution.One or more of queued, running, succeeded, failed, cancelled, idle, and scheduled. |
scheduled |
boolean optional. If the workflow is scheduled. |
limit |
integer optional. Number of results to return. Defaults to 20. Maximum allowed is 50. |
page_num |
integer optional. Page number of the results to return. Defaults to the first page, 1. |
order |
string optional. The field on which to order the result set. Defaults to updated_at. Must be one of: updated_at, name, created_at. |
order_dir |
string optional. Direction in which to sort, either asc (ascending) or desc (descending) defaulting to desc. |
Value
An array containing the following fields:
id |
integer, The ID for this workflow. |
name |
string, The name of this workflow. |
description |
string, A description of the workflow. |
valid |
boolean, The validity of the workflow definition. |
fileId |
string, The file id for the s3 file containing the workflow configuration. |
user |
list, A list containing the following elements:
|
state |
string, The state of the workflow. State is "running" if any execution is running, otherwise reflects most recent execution state. |
schedule |
list, A list containing the following elements:
|
allowConcurrentExecutions |
boolean, Whether the workflow can execute when already running. |
timeZone |
string, The time zone of this workflow. |
nextExecutionAt |
string, The time of the next scheduled execution. |
archived |
string, The archival status of the requested item(s). |
createdAt |
string, |
updatedAt |
string, |