MessageClientList Method (String, String, DateTime, NullableInt32, ActionWebexApiEventArgsListMessage) |
Lists all messages in a space by space Id.
If present, it includes the associated media content attachment for each message.
The list sorts the messages in descending order by creation date.
Namespace:
WebexSDK
Assembly:
WebexSDK (in WebexSDK.dll) Version: 0.1.0.0 (0.1.0.0)
Syntax public void List(
string spaceId,
string mentionedPeople,
DateTime before,
Nullable<int> max,
Action<WebexApiEventArgs<List<Message>>> completionHandler
)
Parameters
- spaceId
- Type: SystemString
The identifier of the space. - mentionedPeople
- Type: SystemString
Only list messages mentioned self - before
- Type: SystemDateTime
Only list messages sent only before this date - max
- Type: SystemNullableInt32
The maximum number of messages in the response, default is 50 - completionHandler
- Type: SystemActionWebexApiEventArgsListMessage
The completion event handler.
Remarks Since: 0.1.0
See Also