Skip to main content
Version: Next

Query process and local variables (alpha)

POST 

/variables/search

Search for variables 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

    Variable filter request.

    variableKey int64

    The key for this variable.

    name string

    Name of the variable.

    value string

    The value of the variable.

    scopeKey int64

    The key of the scope of this variable.

    processInstanceKey int64

    The key of the process instance of this variable.

    tenantId string

    Tenant id of this variable.

    isTruncated boolean

    Whether the value is truncated or not.

Responses

The variable search successful response.

Schema
    page object
    totalItems int64
    firstSortValues object[]
    lastSortValues object[]
    items object[]
  • Array [
  • variableKey int64

    The key for this variable.

    name string

    Name of this variable.

    value string

    Value of this variable.

    fullValue string

    Full value of this variable.

    scopeKey int64

    The key of the scope of this variable.

    processInstanceKey int64

    The key of the process instance of this variable.

    tenantId string

    Tenant id of this variable.

    isTruncated boolean

    Whether the value is truncated or not.

  • ]
Loading...