If you have an "open-ended" list/JSON array (i.e. without the square brackets, like so): {"page":" http://www.example.com/url1 "}, {"page":" http://www.example.com/url2 "} Then turn it into a live ArrayList with this VTL: #set( $urlHistory = '#set( $urlHistory = [' + $lead.urlHistoryOpenArray + '] )' ) #evaluate( $urlHistory )
... View more