MembershipClientCreateByPersonEmail Method |
Adds a person to a space by email address; optionally making the person a moderator.
Namespace:
WebexSDK
Assembly:
WebexSDK (in WebexSDK.dll) Version: 0.1.0.0 (0.1.0.0)
Syntax public void CreateByPersonEmail(
string spaceId,
string personEmail,
Nullable<bool> isModerator = false,
Action<WebexApiEventArgs<Membership>> completionHandler = null
)
Parameters
- spaceId
- Type: SystemString
The identifier of the space where the person is to be added. - personEmail
- Type: SystemString
The email address of the person to be added. - isModerator (Optional)
- Type: SystemNullableBoolean
if set to true [is moderator of the space]. The default is false. - completionHandler (Optional)
- Type: SystemActionWebexApiEventArgsMembership
The completion handler.
Remarks Since: 0.1.0
See Also