Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Page Properties
hiddentrue
idDONE

Product Version
Report Note
Assignee

Resources & Remarks

Modification History

NameDateProduct VersionAction
Antje18 MAY 20212021 SummerPage created.
Antje28 NOV 20222022 Winteradd includeComments query parameter



As of Version

product version 2020 Autumn | component version 

Request MethodGET
Response FormatJSON
Description


Excerpt

Retrieves the process instance history for the process instance specified by its processInstanceId.

Additionally, the boolean query parameter includeComments can be added to the request URL. Default is false.

Response HTTP status codes:

HTTP Status CodeMeaning
200OK
403Forbidden
404Not found


Request Example

https://<host>/api-web/api/process/instances/af678-34280fe-3bc/history

no request body

Response Example

200 OK

Code Block
languageyml
titleresponse body
{
  "tasks": [
    {
      "assignee": {
        "id": "string",
        "title": "string"
      },
      "attachments": [
        "string"
      ],
      "initiator": {
        "id": "string",
        "title": "string"
      },
      "owner": {
        "id": "string",
        "title": "string"
      },
      "processDefinition": {
        "description": "string",
        "id": "string",
        "idPrefix": "string",
        "name": "string"
      },
      "subject": "string",
      "variables": [
        {
          "name": "string",
          "type": "string",
          "value": {}
        }
      ]
    }
  ]
}


...