I created a collection where I have data like Ids , Name and AssetIds. AssetIDs is of this form [123, 234,222]. Now I need to pass this value i.e. the whole array including [] to an api as a query I am calling or to a text box as text. But I am unable to get hold of it. it says the argument expects text but I am providing data of type Table
I tried getting the assetsID in a collection and then calling the collection in my method
Collect(Assets,CurrentEvents.assetIds) ---> collection where I tried adding my assetIds
anothertry.FilterEvents("my first parameter",{assetIds:Assets})--> using the collection in the parameter
Can someone explain me what wrong am I doing? and how to get hold of complete assets Ids with []
Thanks