<#assign userId = []/>
<#list owner as groupId>
<#assign users = get_lane_users(poolId, groupId)/>
<#list users as user>
<#assign userId = userId + [user.id]/>
</#list>
</#list>
<#list userId as singleId>
${P_add_user_to_lane([303971, singleId])}
</#list>
The error Message response is: "Expected usage P_add_user_to_lane(laneId, userId)"
I also tryed to use
${P_add_user_to_lane(1234, 'f...@bar.com')}
but the script fails.
Thank you for support.
Regards
Thanks Murali,
your code works fine. My error came from following documentation's syntax, that specified to insert the square brackets.
Regards,
Filippo.