- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2025 09:55 AM
Hello Experts,
I have a custom Flow Designer action which returns output in Array.String data type. This FD action is in a custom scope.
I am looking for a script to iterate through these array.string values in a client callable script include.
I tried all JSON methods ( parse(), stringify) . But, I am not able to iterate through these array.string values.
Code Snippet generated by FD action works fine in background script. But, same code doesn't work in client callable script include.
Following is the sample output returned from this custom FD action.
{
"Folder List": [
"23476",
"09729"
]
}
I am looking for a script to iterate through above array string object and print values.
Regards,
Sam
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2025 04:30 PM
I resolved it myself.
All I was missing was a global object before calling OOB JSON API methods.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2025 04:30 PM
I resolved it myself.
All I was missing was a global object before calling OOB JSON API methods.