How to pass an Array / List into Orchestrator Queue using "Add Queue Item"?
Note: It is not possible to add an array directly as a queue item. However, it is possible to serialize it to a JSON string and then add the json string as queue item. While retrieving queue item, the json can be deserialized to get the actual array.
Check the below screenshot and use the same method to pass an array to queue.
- To fetch the value use Get Transaction Item. Check the below screenshots for more idea
The above line will give you the serialized json string. Deserilize it to get the actual array.