MessageClientList Method (String, String, String, 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,
string beforeMessage,
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 - beforeMessage
- Type: SystemString
only list messages sent only before this message by id. - 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