v1

latestOpenAPI 3.0.0Apache-2.02026-07-172384109.4 KB

get workflow data objects aka data attributes

post/api/v1/workflow/dataobjects/get

Request body

workflowIdstring required
workflowRunIdstring
keysstring[]
useMemoForDataAttributesboolean

Example request

{
  "keys": [
    "keys",
    "keys"
  ],
  "useMemoForDataAttributes": true,
  "workflowRunId": "workflowRunId",
  "workflowId": "workflowId"
}

Response

successful operation

Example response

{
  "objects": [
    {
      "value": {
        "data": "data",
        "extStoreId": "extStoreId",
        "extPath": "extPath",
        "encoding": "encoding"
      },
      "key": "key"
    },
    {
      "value": {
        "data": "data",
        "extStoreId": "extStoreId",
        "extPath": "extPath",
        "encoding": "encoding"
      },
      "key": "key"
    }
  ]
}