Hello I receive the following error when running my flow.
Unable to process template language expressions in action 'Parse_JSON' inputs at line '1' and column '33823': 'Required property 'content' expects a value but got null. Path ''.'.
Below is my Parse JSON schema:
The flow is pulling picture attachments from a Microsoft Form and putting it into a sharepoint grid. I want it to allow a null value, but I'm not entirely sure how. There are multiple attachments from different forms questions. I am still fairly new to this, so any help would be appreciated. Thank you!
I am still receiving the same error message.
Put a condition before the Parse JSON action and test the input to see if its blank. only execute the Parse JSON step if the input isn't blank.
Thanks Pstork1,
Would you be able to elaborate a bit more on how to bypass the parse JSON if it is null?
The problem is that the value you are trying to Parse is null. You need to put a condition in to evaluate the value before you feed it to the Parse JSON. If the value is empty (null) then you need to bypass the parse JSON or use a Parse JSON that is using static content.