Hi All,
I am trying to send 'Rich text field' data from Workfront custom form to AEM Assets using Workfront Scenario.
Can anyone provide solution or workaround for this?
Solved! Go to Solution.
I think that the main issue that you are facing is that Rich text fields are in a JSON format like this one:
{
"blocks": [
{
"key": "",
"text": "Project...",
"type": "unstyled",
"depth": 0,
"inlineStyleRanges": [],
"entityRanges": [],
"data": {}
}
],
"entityMap": {}
}
You will need to read the field, map it using the JSON functionality, and then you will be able to use all the text you need
Hope it helps
I think that the main issue that you are facing is that Rich text fields are in a JSON format like this one:
{
"blocks": [
{
"key": "",
"text": "Project...",
"type": "unstyled",
"depth": 0,
"inlineStyleRanges": [],
"entityRanges": [],
"data": {}
}
],
"entityMap": {}
}
You will need to read the field, map it using the JSON functionality, and then you will be able to use all the text you need
Hope it helps
Yes Correct, that worked.Thanks for the response.
Views
Likes
Replies
Views
Likes
Replies