I am collecting the content of a form, one of the fields of which is a multi-line Field (Dataverse) & using JSON format to integrate this with flow. eg. "ScopeOfWork" below:
ClearCollect(
colFormWithNotes,
{
State: DataCardValue88.Selected.Abbreviation,
Zip: DataCardValue42.Text,
ScopeOfWork: DataCardValue90.Text
}
);
FlowProjectDetails.Run(JSON(colFormWithNotes))
However, when I parse the content to JSON in Flow, the paragraph marks from "ScopeOfWork" are missing.
Is there a way to parse a multi-line datacard and retain the paragraph marks?