Hi,
I need my application to be notified by the orchestrator webhook whenever a new process is created. I configured the webhook for this and tested that it is able to connect to my application. But the informatoin about the created process in the request body of the webhook call does not contain information about the outputs of the process.
here is a sample body of the webhook call where i created a process that has one input ‘ProductName’ and one output ‘Price’.
{
"Type": "process.created",
"EventId": "6839390",
"Timestamp": "2020-03-06T13:18:25.897",
"Releases": [
{
"Id": 310405,
"Key": "9810976b-3bd2-4362-a256-9005a4344139",
"ProcessKey": "FetchProductPrice",
"ProcessVersion": "1.0.5",
"Name": "FetchProductPrice_LocalVm",
"Description": "",
"IsLatestVersion": false,
"InputArguments": {
"ProductName": "test"
}
}
],
"TenantId": *****,
"OrganizationUnitId": *****,
"UserId": *****
}
Note that this request body has information about the input but not about the output
thanks.