List workflow tasks assigned to the current user

get

/content/management/api/v1.1/workflowTasks

List tasks assigned to the current user.

Request

Query Parameters
  • This parameter is used to control the returned fields in each workflow task in the list. This parameter accepts item. and will return the item information for each workflow task in the list only when specified. All the field names are case-sensitive, users must provide the correct field names in the query. Each workflow task has both standard fields (id, name, assignedTo, dueDate, initiatedBy, source, workflow, actions)and additional fields (item).When fields is specified as all (in lower case), all the standard and additional fields are returned. The standard fields are always returned in the response and cannot be filtered out. The user can filter out only the additional fields. This parameter is optional in the query, and by default the result shows only standard fields in the response. Any incorrect or invalid field name given in the query will throw an error.

    Example: ?fields=item
    This returns all standard fields along with the item additional fields for each workflow task.
    Example: ?fields=all
    This will return all standard fields and all additional fields for each workflow.
  • This parameter accepts a non negative integer and is used to control the size of the result.
    Default Value: 100
  • This parameter accepts a non negative integer and is used to control the start index of the result.
    Default Value: 0
  • This parameter is used to control order of results. The value of this query parameter follow the format of fieldName:[asc/desc]. asc stands for ascending order desc stands for descending order, default order is asc.Multiple sort orders are separated by semicolon (;).
    format : orderBy={fieldName1}:{asc/desc};{fieldName2}:{asc/desc}
    Default Value: name:asc
  • This parameter accepts a query expression condition that matches the field values. Many such query conditions can be joined using AND operators and grouped with parentheses. The value of query condition follows the format of {fieldName} {operator} "{fieldValue}". source, assignedTo.type and assignedTo.id are the field names supported in this version. Field names are optional. When no condition is specified, this will list all the tasks across workflow engines.
    Example:
    ?q=source eq "OIC"
    ?q=source eq "OIC" AND assignedTo.type eq "user" AND assignedTo.id eq "user123"
    ?q=source eq "OIC" AND assignedTo.type eq "role" AND assignedTo.id eq "SGGroup"
  • This parameter accepts a boolean flag. If specified as true, then the returned result must include the total result count.
    Default Value: false
Back to Top

Response

Supported Media Types

200 Response

OK.
Body ()
Root Schema : WorkflowTasks
Type: object
WorkflowTasks
Show Source
Nested Schema : aggregationResults
Type: array
Aggregation results.
Show Source
Nested Schema : items
Type: array
Singular resources contained in the collection.
Show Source
Nested Schema : pinned
Type: array
Pinned items. Shows items pinned at the top of search list
Show Source
Nested Schema : AggregationResult
Type: object
Show Source
Nested Schema : WorkflowTask
Type: object
WorkflowTask
Show Source
Nested Schema : actions
Type: array
Actions on the workflow task.
Show Source
Nested Schema : assignedTo
Type: array
Assigned to user/group
Show Source
Nested Schema : date
Type: object
date
Show Source
Nested Schema : WorkflowTaskItem
Type: object
WorkflowTaskItem
Show Source
Nested Schema : WorkflowId
Type: object
WorkflowId
Show Source
Nested Schema : WorkflowTaskActions
Type: object
WorkflowTaskActions
Show Source
Nested Schema : WorkflowTaskAssignedToBean
Type: object
Show Source
Nested Schema : advancedVideoInfo
Type: object
Whether the item is video-plus.

304 Response

Not modified.

400 Response

Bad request.

403 Response

Forbidden.

404 Response

Not found.

500 Response

Internal server error.
Back to Top