UserManagerServicesSaveCurrentUserProfile Method
|
Updates profile information of current user
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<bool> SaveCurrentUserProfile(
UserProfileInfo profileData
)
Public Function SaveCurrentUserProfile (
profileData As UserProfileInfo
) As XHRServiceResponseGeneric(Of Boolean)
public:
virtual XHRServiceResponseGeneric<bool>^ SaveCurrentUserProfile(
UserProfileInfo^ profileData
) sealed
abstract SaveCurrentUserProfile :
profileData : UserProfileInfo -> XHRServiceResponseGeneric<bool>
override SaveCurrentUserProfile :
profileData : UserProfileInfo -> XHRServiceResponseGeneric<bool>
Parameters
- profileData
- Type: UserProfileInfo
Updated details of the profile
Examples Sample JSON input
{
"_tempThumbnailPath": null,
"cellphone": "",
"defaultEditFormView": "index",
"email": "jime@ingeniux.com",
"name": "Jim",
"notificationSound": true,
"notificationSoundName": "arpeggio",
"organization": "Ingeniux Corporation",
"position": "CEO",
"thumbnail": "jim.jpg",
"workphone": "",
"loading": false
}
Return Value
Type:
XHRServiceResponseGenericBooleanTrue if user exists, false if not
See Also