Click or drag to resize

SpaceClientList Method

Lists all spaces where the authenticated user belongs.

Namespace:  WebexSDK
Assembly:  WebexSDK (in WebexSDK.dll) Version: 0.1.0.0 (0.1.0.0)
Syntax
C#
public void List(
	string teamId,
	Nullable<int> max,
	Nullable<SpaceType> type,
	Nullable<SpaceSortType> sortBy,
	Action<WebexApiEventArgs<List<Space>>> completionHandler
)

Parameters

teamId
Type: SystemString
If not null, only list the spaces that are associated with the team by team id.
max
Type: SystemNullableInt32
The maximum number of spaces in the response. If null, all spaces are listed.
type
Type: SystemNullableSpaceType
If not null, only list the spaces of this type. Otherwise all spaces are listed.
sortBy
Type: SystemNullableSpaceSortType
If not null, sort results by spaceId(id), most recent activity(lastactivity), or most recently created(created).
completionHandler
Type: SystemActionWebexApiEventArgsListSpace
The completion handler.
Remarks
Since: 0.1.0
See Also