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 briefrepresentation



As of Version

product version 2020 Autumn | component version 

Request MethodPOST
Response FormatHTTP status code
Description


Excerpt

Retrieves the task specified by its taskId.


Optionally, the boolean query parameter parameters includeProcessVariables and briefRepresentation can be specified. For details see GET /api-web/api/bpm/tasks.

Response HTTP status codes:

HTTP Status CodeMeaning
200The action was executed.
404

The specified task was not found.


Request Example

https://<host>/api-web/api/bpm/tasks/4345abc-acb3485739-ef3

Response Example

200 OK

Code Block
languageyml
titleresponse body
{
  "assignee": {
    "id": "string",
    "title": "string"
  },
  "attachments": [
    "string"
  ],
  "claimTime": "string",
  "createTime": "string",
  "description": "string",
  "formKey": "string",
  "id": "string",
  "initiator": {
    "id": "string",
    "title": "string"
  },
  "name": "string",
  "owner": {
    "id": "string",
    "title": "string"
  },
  "parentTaskId": "string",
  "processDefinition": {
    "description": "string",
    "id": "string",
    "idPrefix": "string",
    "name": "string"
  },
  "subject": "string",
  "suspended": true,
  "variables": [
    {
      "name": "string",
      "scope": "string",
      "type": "string",
      "value": {}
    }
  ]
}


...