GroupMeGroupFactory UpdateGroup Method CkSoftware GroupMe SDK - Documentation
Updates the group with the given groupId with the given data. Attention: only new data must be added, so if you only want to change the description, only add the description parameter.

Namespace: CkSoftware.GroupMe.Sdk.Groups
Assembly: CkSoftware.GroupMe.Sdk.Groups (in CkSoftware.GroupMe.Sdk.Groups.dll) Version: 1.0.1.35398 (1.0.1.0)
Syntax

public Task<GroupMeGroup> UpdateGroup(
	string groupId,
	string newGroupName = "",
	string newDescription = "",
	PictureData newGroupImage = null,
	bool openForSharing = false
)

Return Value

Type: Task GroupMeGroup 
An awaitable Task resulting in an updated GroupMeGroup.
Exceptions

ExceptionCondition
ArgumentNullExceptionOccurs if the groupId is null or an empty string.
See Also