Hi community,
I have a flow that receives following schema of an json object via HTTP POST request from an other flow.
schema:
{
"type": "array",
"items": {
"type": "object",
"properties": {
"LieferscheinID": {
"type": "integer"
},
"EmailEmpfaenger": {
"type": "string"
}
}
}
}
the output data looks as follows:
{
"LieferscheinID" : "1",
"EmailEmpfaenger": "john.doe@123fakecompany.com"
}
Now, I need to extract the data as two separate variables, e.g. varID = 1 and varEmail=john.doe@123fakecompany.com
in order to use them for further steps in the flow.
How can I do that?
Thanks in advance