Click or drag to resize

SpaceClientCreate Method

Creates a space. The authenticated user is automatically added as a member of the space. See the Memberships API to learn how to add more people to the space.

Namespace:  WebexSDK
Assembly:  WebexSDK (in WebexSDK.dll) Version: 0.1.0.0 (0.1.0.0)
Syntax
C#
public void Create(
	string title,
	string teamId,
	Action<WebexApiEventArgs<Space>> completionHandler
)

Parameters

title
Type: SystemString
A user-friendly name for the space.
teamId
Type: SystemString
If not null, this space will be associated with the team by team id. Otherwise, this space is not associated with any team.
completionHandler
Type: SystemActionWebexApiEventArgsSpace
The completion event handler.
Remarks
Since: 0.1.0
See Also