sendMessage method
Future<DynamiteResponse<BotSendMessageResponseApplicationJson, void> >
sendMessage({
- required String message,
- required String token,
- String? referenceId,
- int? replyTo,
- BotSendMessageSilent? silent,
- BotSendMessageApiVersion? apiVersion,
- bool? oCSAPIRequest,
Sends a new chat message to the given room.
The author and timestamp are automatically set to the current user/guest and time.
Returns a Future containing a DynamiteResponse with the status code, deserialized body and headers.
Throws a DynamiteApiException if the API call does not return an expected status code.
Parameters:
messageThe message to send.referenceIdFor the message to be able to later identify it again. Defaults to''.replyToParent id which this message is a reply to. Defaults to0.silentIf sent silent the chat message will not create any notifications. Defaults to0.apiVersionDefaults tov1.tokenConversation token.oCSAPIRequestRequired to be true for the API request to pass. Defaults totrue.
Status codes:
- 201: Message sent successfully
- 400: When the replyTo is invalid or message is empty
- 401: Sending message is not allowed
- 413: Message too long
See:
- sendMessageRaw for an experimental operation that returns a
DynamiteRawResponsethat can be serialized.
Implementation
Future<_i1.DynamiteResponse<BotSendMessageResponseApplicationJson, void>> sendMessage({
required String message,
required String token,
String? referenceId,
int? replyTo,
BotSendMessageSilent? silent,
BotSendMessageApiVersion? apiVersion,
bool? oCSAPIRequest,
}) async {
final rawResponse = sendMessageRaw(
message: message,
token: token,
referenceId: referenceId,
replyTo: replyTo,
silent: silent,
apiVersion: apiVersion,
oCSAPIRequest: oCSAPIRequest,
);
return rawResponse.future;
}