listObject, what functions can use this, and how can I extract values out of it
Hi there,
I have an Object Array that looks something like this:
"Account":
[
{"AccountID": "1", "lineofBusiness": "AA", "pymntType": "Cash"},
{"AccountID": "2", "lineofBusiness": "BB", "pymntType": "CreditCard"},
{"AccountID": "3", "lineofBusiness": "CC", "pymntType": "Debit"},
{"AccountID": "4", "lineofBusiness": "CC", "pymntType": "CreditCard"}
]
Let's say I only want to clean up the array to accounts that has pymntType = CreditCard only, so then the expression would look something like this:
filter(#{ExperiencePlatform.Profile.Account, "pymtType", ["CreditCard"]} --> this returns a listObject with pymtType == CreditCard only.
At this point, I have couple questions:
1) What can I do with this listObject? I am not aware of any functions that accept listObject as a parameter
2) How do I extract a value of this new listObject? For example, I want the lineofBusiness at position 0.
Thanks.