Click or drag to resize

MembershipClient Class

Memberships represent a person's relationship to a space. Use this API to list members of any space that you're in or create memberships to invite someone to a space. Memberships can also be updated to make someone a moderator or deleted to remove them from the space.
Inheritance Hierarchy
SystemObject
  WebexSDKMembershipClient

Namespace:  WebexSDK
Assembly:  WebexSDK (in WebexSDK.dll) Version: 0.1.0.0 (0.1.0.0)
Syntax
C#
public sealed class MembershipClient

The MembershipClient type exposes the following members.

Constructors
  NameDescription
Public methodMembershipClient
Initializes a new instance of the MembershipClient class.
Top
Methods
  NameDescription
Public methodCreateByPersonEmail
Adds a person to a space by email address; optionally making the person a moderator.
Public methodCreateByPersonId
Adds a person to a space by person id; optionally making the person a moderator.
Public methodDelete
Deletes a membership by membership id. It removes the person from the space where the membership belongs.
Public methodGet
Retrieves the details for a membership by membership id.
Public methodList(NullableInt32, ActionWebexApiEventArgsListMembership)
Lists all space memberships where the authenticated user belongs.
Public methodList(String, NullableInt32, ActionWebexApiEventArgsListMembership)
Lists all memberships in the given space by space Id.
Public methodListByPersonEmail
Lists any space memberships for the given space (by space id) and person (by email address).
Public methodListByPersonId
Lists any space memberships for the given space (by space id) and person (by person id).
Public methodUpdate
Updates the properties of a membership by membership id.
Top
Remarks
Since: 0.1.0
See Also