Has anyone worked on SharePoint Hosted App workflow with JSON string?
I would like to parse JSON string (captured in comments column) in workflow email body (string) - Expression Editor.
Example JSON String (Comments):
[{"Value":"Started working on it.","TimeStamp":1467645902499,"Author":"John","AuthorId":9},{"Value":"Need some other information.","TimeStamp":1467645925272,"Author":"John","AuthorId":9}]
I would like to Display in Email:
John 7/4/2016 10:25:02 AM
Started working on it.
John 7/4/2016 10:25:25 AM
Need some other information.
Anuradha!!