We have a weird error compiling a script:
I do not see how these error correspond to the source (in the next image).
Process combines a collection to a HTML table to be sent via email:
Like
1 comments
15:46 Mar 19, 2024
AccountId and StatusId are Guids, not strings. Try using this instead:
item.TryGetValue<Guid>("Account", out Guid AccountId);
Do the same for Status.
As a side note, it would likely be easier to just retrieve the data using an ESQ rather than using the collection returned by the read data element.
Ryan
Show all comments