I am attempting to filter out bundles that do not include a certain data point. Right now I have {{sort(71.body.data; "desc"; "entryDate")}}To get the most recent update, but I only need the most recent update posted by a specific user. As you can see below, I have one bundle with many data sets. I ...
Chris, My expression above was indeed put into an iterator, yet I only got the user ID tags highlighted in yellow. I need also the IDs above highlighted in green. Is my expression incorrect? I essentially have one array that contains several arrays, each containing a user.ID or a team.ID that will u...
Pointing the '2.body.data' variable to '2.body.data[].tags' instead gives me values, but only from the first data array. Highlighted yellow are the tags I am gettingand green is what tags I also need included Any ideas?
Hi Dan, Thank you for the reply, unfortunately I am not getting any values from that. Here is the input bundle if that helps:[
{
"name": "Tags",
"scope": "roundtrip",
"value": []
}
]
It ended up being so that the Note ObjCode and the ObjID had to match the topmost object the Note was being posted, not the parent thread ID like I was assuming.
HelloI need to pull two different types of IDs from the data belowI need the user.id from each NTAG as well as each team.id from each NTAG.The goal is to have an array of IDs to include in a Update reply. [
{
"body": {
"data": [
{
"ID": "68...
Thank you! Currently, I am running a scenario that finds the latest update/Note on a project and posts a reply to that Note. Only when I test this, it takes over 20 minutes to process this module. If I change the ObjCode to PROJ and use the ProjectID it works fine, it's when I switch it to NOTE and ...