
I have a Send an HTTP request action that will update a field named Email Notification Check. Right after this particular flow I have a Get Item action to see this update in the field but it doesnt show. I used the right name for Email notification Check in the http request as you can see from the first and third picture. The results of the http request seem fine to me but you can see the results of the get item action dont show Email_x0020_notification_x0020_C. If the http request action works I showed see what is shown in the last picture with the designated name and email, filled in. Why does the http request action not work properly?
Email Notification Field:
Part of the Flow:
The Send an HTTP Request Flow:
Results:
Results of Get Item 2:
Hi @alopez222,
I would use the Person Assigned Claims value for this instead of the DisplayName. Also add the key property to the json.
Try something like below:
In my example the Person Assigned Claims value was coming from the trigger action. You might want to replace that by your dynamic content field.
{
"formValues":[
{
"FieldName": "Email_x0020_Notification_x0020_C",
"FieldValue": "[{'Key':'@{triggerOutputs()?['body/PersonAssigned/Claims']}'}]"
}
]
}