How to configure only the last 4 characters of the accountID in the response.
The request_accountID has the full account ID and shows the actual accountID in the response by using {{request_accountID}} in the VSI response body.
But when using {{=request_accountID.substring(1,5);}} the response shows {{=request_accountID.substring(1,5);}}, not the required 4 characters.
Release : 10.7.2
Add the toString method to the response:
{{=request_accountID.tostring().substring(1,5);}}