neel_psl
8 years agoAce
Single V1 API to Update all user details (firstName, lastName, email)
Hi,
Is there any such v1/v2 api to update all user details (firstName, lastName, email) at once??
As we have to update all details at one also i have seen different api's to update individual field but want single api to do all updation at once.
Thanks
neel_psl- No, there is no V1 call to update all the user details at once. You have to use multiple calls to update all the user details. You can create a function in freemarker and pass the field you want to update for user.
E.g
<#function updateuser id feild value > <#assign call = rest("/restapi/vc/users/id/${id}/profiles/name/${feild}/set?value=${value}") /> </#if>