Hello Team. Given the upcoming API depreciations, what is the recommended approach in Bridge to use the lastKey to get the full set of results in order to parse them when using the Call API to Smartsheet's API and needing to call it multiple times?
For example, if we have greater than 10,000 workspaces and we use the GET /workspaces call and retrieve the lastKey to make a additional calls, how do I get the full result set back to the parent to parse it? Currently I cannot retrieve data from Children that call themselves.
Example Flow:
Parent Workflow - uses GET /workspaces; responds with lastKey
- Conditional Junction: IS NOT EMPTY: lastKey: call Child workflow
Child Workflow (called for the first time) - uses GET /workspaces with the lastKey from the parent
I can pass the response of this workflow back to the parent
Child Workflow then calls itself because an additional lastKey is present.
I CANNOT pass this response back to the parent.
Requirement: get ALL workspace IDs and Names into a single variable to parse.