I found in the documentation how to get a single hop of a redirect using this: $response.Redirects.0.URI;$response.URI How would I get the full, redirect chain of a link with multiple redirects? I assume I need to format using an array but not sure the correct format. As an example this link has 4 redirects and I want to be able to get the full list: https://order-nowx.com/AlphaTonic_DISCOUNT
I came up with a solution but it seems a bit off? [% FOREACH response.Redirects -%][$URI,$response.URI],[% END %] This seems to repeat some urls instead of having just a clean redirect chain of one hop to the next.