Click or drag to resize

IUserManagementUpdateContactInfo Method

Updates the name and email address of a user. Can be called by an admin about anyone or by a user about themself

Namespace:  Panopto.Server.Services.PublicAPI.V40
Assembly:  DataLib (in DataLib.dll) Version: 13.0.0.0 (13.0.0.00000)
Syntax
C#
void UpdateContactInfo(
	AuthenticationInfo auth,
	Guid userId,
	string firstName,
	string lastName,
	string email,
	bool sendNotifications
)

Parameters

auth
Type: Panopto.Server.Services.PublicAPI.V40AuthenticationInfo
Used to authenticate the current user. Can be null if an auth cookie is passed
userId
Type: SystemGuid
The ID of the user to update. Exception if invalid
firstName
Type: SystemString
The new first name
lastName
Type: SystemString
The new last name
email
Type: SystemString
The new email address
sendNotifications
Type: SystemBoolean
If true the user will receive email notifications when sessions finish encoding
See Also