Hi Tom,
Thanks, care to share that sample workflow? 
I now run into the issue that my second step( the send email ) fails as the values are not filled in.
This is my complete workflow (via API)
{
"id": "8d9282ae-57e4-439f-8dbc-f1ae7ca255ab",
"name": "Send email when attributes change",
"description": "Send email when attributes change",
"created": "2021-11-22T15:32:24.942222512Z",
"definition": {
"start": "Get Identity",
"steps": {
"Get Identity": {
"actionId": "sp:get-identity",
"attributes": {
"id.$": "$.identity.name"
},
"nextStep": "sendmail",
"selectInput": "$",
"selectResult": "$",
"type": "action"
},
"complete": {
"type": "success"
},
"sendmail": {
"actionId": "sp:send-email",
"attributes": {
"body": "Welcome to your first workflow.\nName:${Name}",
"context": {
"Name.$": "$.identity.name"
},
"recipientId.$": "$.identity.id",
"subject": "Hello World!"
},
"nextStep": "complete",
"selectInput": "$",
"selectResult": "$",
"type": "action"
}
}
},
"enabled": true,
"executionCount": 11,
"failureCount": 11,
"creator": {
"type": "IDENTITY",
"id": "2c9180.....b7493",
"name": "kold...y.com"
},
"owner": {
"type": "IDENTITY",
"id": "2c9180......1b7493",
"name": "kold........com"
},
"trigger": {
"type": "EVENT",
"attributes": {
"id": "idn:identity-attributes-changed"
}
}
}
And this is my response:
[
{
"type": "WorkflowExecutionStarted",
"timestamp": "2021-11-22T17:05:28.587591686Z",
"attributes": {
"input": {
"_meta": {
"invocationId": "cc3a7abb-bb5a-4372-a489-d5d5c1820eca",
"subscriptionId": "8d9282ae-57e4-439f-8dbc-f1ae7ca255ab",
"triggerType": "FIRE_AND_FORGET"
},
"changes": [
{
"attribute": "triggerSnapshots",
"newValue": "{Rule=2c9180857d484512017d489bee2b40ce}",
"oldValue": "{Rule=2c9180857d484512017d489264053cc7}"
},
{
"attribute": "lastname",
"newValue": "Yoda-Family66",
"oldValue": "Yoda-Family4655d"
}
],
"identity": {
"id": "2c91808873354f5401737088f1544bb1",
"name": "yoda",
"type": "IDENTITY"
}
}
}
},
{
"type": "WorkflowTaskScheduled",
"timestamp": "2021-11-22T17:05:28.587631835Z",
"attributes": {}
},
{
"type": "WorkflowTaskStarted",
"timestamp": "2021-11-22T17:05:28.640515299Z",
"attributes": {}
},
{
"type": "WorkflowTaskCompleted",
"timestamp": "2021-11-22T17:05:28.67504578Z",
"attributes": {}
},
{
"type": "ActivityTaskScheduled",
"timestamp": "2021-11-22T17:05:28.67511056Z",
"attributes": {
"activity": "sp:internal:http",
"input": {
"id": "yoda",
"method": "GET",
"path": "api/v1/identities/yoda",
"service": "mice"
},
"task": "sp:get-identity"
}
},
{
"type": "ActivityTaskStarted",
"timestamp": "2021-11-22T17:05:28.75783093Z",
"attributes": {}
},
{
"type": "ActivityTaskCompleted",
"timestamp": "2021-11-22T17:05:28.848271771Z",
"attributes": {}
},
{
"type": "WorkflowTaskScheduled",
"timestamp": "2021-11-22T17:05:28.848289988Z",
"attributes": {}
},
{
"type": "WorkflowTaskStarted",
"timestamp": "2021-11-22T17:05:28.878915907Z",
"attributes": {}
},
{
"type": "WorkflowTaskCompleted",
"timestamp": "2021-11-22T17:05:28.909230721Z",
"attributes": {}
},
{
"type": "ActivityTaskScheduled",
"timestamp": "2021-11-22T17:05:28.909268443Z",
"attributes": {
"activity": "sp:internal:http",
"input": {
"body": {
"context": {
"Name": null
},
"emailTemplate": {
"body": "Welcome to your first workflow.\nName:${Name}",
"from": "[email protected]",
"replyTo": "[email protected]",
"subject": "Hello World!"
},
"medium": "EMAIL",
"recipientId": "<no value>"
},
"context": {
"Name": null
},
"method": "POST",
"path": "notification/send-notification",
"recipientId": null,
"service": "hermes",
"subject": "Hello World!",
"useInternalClient": true
},
"task": "sp:send-email"
}
},
{
"type": "ActivityTaskStarted",
"timestamp": "2021-11-22T17:05:36.097047458Z",
"attributes": {}
},
{
"type": "ActivityTaskFailed",
"timestamp": "2021-11-22T17:05:36.133341178Z",
"attributes": {}
},
{
"type": "WorkflowTaskScheduled",
"timestamp": "2021-11-22T17:05:36.133356804Z",
"attributes": {}
},
{
"type": "WorkflowTaskStarted",
"timestamp": "2021-11-22T17:05:36.165911437Z",
"attributes": {}
},
{
"type": "WorkflowTaskCompleted",
"timestamp": "2021-11-22T17:05:36.215415638Z",
"attributes": {}
},
{
"type": "WorkflowExecutionFailed",
"timestamp": "2021-11-22T17:05:36.215445904Z",
"attributes": {
"error": "actionStep(sendmail) Error: task failed: activity error (type: sp:internal:http, scheduledEventID: 11, startedEventID: 12, identity: 1@59e78c70f7ba@): request failed: 400 - 400 Bad Request"
}
}
]
I think I need to change something to have the second step use information from the first step but donât see what needs to be changed.
again, thanks for all the suggestions and feedback. It really helps.
Kind regards,
Vincent