Skip to main content
Version: Next

Search process definitions (alpha)

POST 

/process-definitions/search

Search for process definitions 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
    processDefinitionKey int64

    The key for this process definition.

    name string

    Name of this process definition.

    resourceName string

    Resource name of this process definition.

    version int32

    Version of this process definition.

    versionTag string

    Version tag of this process definition.

    processDefinitionId string

    Process defintion id of this process definition.

    tenantId string

    Tenant id of this process definition.

Responses

The process definition search successful response.

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

    The key for this process definition.

    name string

    Name of this process definition.

    resourceName string

    Resource name for this process definition.

    version int32

    Version of this process definition.

    versionTag string

    Version tag of this process definition.

    processDefinitionId string

    Process definition id of this process definition.

    tenantId string

    Tenant id of this process definition.

  • ]
Loading...