Hello!
I am trying to set up a flow, which get's triggered by a webhook from a CRM and save the data depending on the values to dataverse. The problem is, that after the http request power automate loses all values from the webhook.
JSON:
{
"type": "object",
"properties": {
"GGUID": {
"type": "string"
},
"Stichwort": {
"type": "string"
},
"Tagestyp": {
"type": "string"
},
"Datum": {
"type": "string"
},
"DatumString": {
"type": "string"
},
"Wochentag": {
"type": "string"
},
"Arbeitsbeginn": {
"type": "string"
},
"Arbeitsende": {
"type": "string"
},
"Weiterleitungsadresse": {
"type": "string"
},
"Betreff": {
"type": "string"
},
"Weiterleitungstext": {
"type": "string"
},
"Text außerhalb Servicezeiten": {
"type": "string"
}
}
}
I have tried to set varaibles, but the value was always NULL. What could be the problem?