Skip to main content
Version: Next

Query user tasks (alpha)

POST 

/user-tasks/search

Search for user tasks based on given criteria.

note

This endpoint is an alpha feature and not enabled on Camunda clusters out of the box. See the Camunda 8 REST API overview for further details.

Request

Body

    sort object[]
  • Array [
  • field stringrequired
    order string

    Default value: asc

  • ]
  • page object
    from int32
    limit int32
    searchAfter object[]
    searchBefore object[]
    filter object

    User task filter request.

    key int64
    state string
    assignee string
    elementId string
    candidateGroup string
    candidateUser string
    processDefinitionKey int64
    processInstanceKey int64
    tenantIds string
    bpmnDefinitionId string

Responses

The user task search successful response.

Schema
    page object
    totalItems int64
    firstSortValues object[]
    lastSortValues object[]
    items object[]
  • Array [
  • key int64
    state string
    assignee string
    elementId string
    elementInstanceKey int64
    candidateGroup string[]
    candidateUser string[]
    bpmnProcessId string
    processDefinitionKey int64
    processInstanceKey int64
    formKey int64
    creationDate date-time
    completionDate date-time
    followUpDate date-time
    dueDate date-time
    tenantIds string
    externalFormReference string
    processDefinitionVersion int32
    customHeaders object
    property name* string
    priority integer

    Possible values: <= 100

    Default value: 50

    The priority of a user task. The higher the value the higher the priority.

  • ]
Loading...