get workflow data objects aka data attributes
post/api/v1/workflow/dataobjects/get
Request body
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"
}
]
}