Retrieves the names of all process engines available on your platform.

Note: You cannot prepend /engine/{name} to this method.

Method

GET /engine

Parameters

This method takes no parameters.

Result

A JSON array consisting of engine objects.Each engine object has the following properties:

Name Value Description
name String The name of the process engine.

Response Codes

Code Media type Description
200 application/json Request successful.

Example

Request

GET /engine

Response

  1. [{"name":"default"},
  2. {"name":"anotherEngineName"}]

原文: https://docs.camunda.org/manual/7.9/reference/rest/engine/get-names/