- 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 11:20 AM
I guess I'm confused as to why you would be sending output from a Flow Designer Action to something that requires a client-callable script include?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2025 11:30 AM
because, i want to parse output of a script include in a client script.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2025 11:41 AM
Asking for code for a client-callable script include is different than asking for code that runs in a client script. For us to be able to help, we are going to need to understand the ask.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2025 11:44 AM
i am not asking for a help on client script. I have already provided the problem statement.