Forum Discussion
sankulseth
10 years agoContributor
I went through the developer guide quick question what should be URL values for below link
http://community.lithium.com/community-name/restapi/vc/users/id/43/profiles/avatar
http://community.lithium.com/community-name/restapi/vc/users/id/43/profiles/avatar
VarunGrazitti
10 years agoBoss
sankulseth - It should be http://community.lithium.com/restapi/vc/users/id/43/profiles/avatar
However, in the code, you need to call it like:
<#assign getAvatar = restadmin("/users/id/43/profiles/avatar/url").value>
${getAvatar} <!-- this will print the URL of the avatar -->
I hope this helps.