TeamMembershipClient.CreateById 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: System.String
The identifier of the team. - personId
- Type: System.String
The identifier of the person. - isModerator (Optional)
- Type: System.Nullable<Boolean>
if set to true [is moderator of the team]. The default is false. - completionHandler (Optional)
- Type: System.Action<WebexApiEventArgs<TeamMembership>>
The completion event handler.
RemarksSince: 0.1.0
See Also