TeamMembershipClientCreateById Method  | 
 
            Adds a person to a team by person id; optionally making the person a moderator of the team.
            
 
    Namespace: 
   WebexSDK
    Assembly:
   WebexSDK (in WebexSDK.dll) Version: 0.1.0.0 (0.1.0.0)
Syntaxpublic void CreateById(
	string teamId,
	string personId,
	Nullable<bool> isModerator = false,
	Action<WebexApiEventArgs<TeamMembership>> completionHandler = null
)
Parameters
- teamId
 - Type: SystemString
The identifier of the team. - personId
 - Type: SystemString
The identifier of the person. - isModerator (Optional)
 - Type: SystemNullableBoolean
if set to true [is moderator of the team]. The default is false. - completionHandler (Optional)
 - Type: SystemActionWebexApiEventArgsTeamMembership
The completion event handler. 
RemarksSince: 0.1.0
See Also