Path: / {BASE} / users / {login} / profile

Update/Save the user profile (foaf) for the given account

Path parameters:
login - the user to modify

Method Summary
ResourceDescription
POST /{BASE}/users/{login}/profileUpdate/Save the user profile (foaf) for the given account

Method Detail
HTTP Example:
POST /{BASE}/users/{login}/profile

API Example:

UserManagementWebService.setUserProfile({'login': /* login the user to modify */,
  '$entity': /* formParams the user profile (foaf, without prefix) in */});

Update/Save the user profile (foaf) for the given account

Input:
javax.ws.rs.core.MultivaluedMap<String,String> - the user profile (foaf, without prefix) in {@value Namespaces#MIME_TYPE_FORM_URLENC}
Output:
javax.ws.rs.core.Response - {@link org.apache.marmotta.platform.user.webservices.UserWebService.AccountPoJo} after the update in JSON
HTTP return codes:
404 - if no such user exists.