getReactions method

Future<DynamiteResponse<ReactionGetReactionsResponseApplicationJson, void>> getReactions({
  1. required String token,
  2. required int messageId,
  3. ReactionGetReactionsApiVersion? apiVersion,
  4. String? reaction,
  5. bool? oCSAPIRequest,
})

Get a list of reactions for a message.

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:

  • apiVersion Defaults to "v1".
  • token
  • messageId ID of the message.
  • reaction Emoji to filter.
  • oCSAPIRequest Required to be true for the API request to pass. Defaults to true.

Status codes:

  • 200: Reactions returned
  • 404: Message or reaction not found

See:

Implementation

Future<_i1.DynamiteResponse<ReactionGetReactionsResponseApplicationJson, void>> getReactions({
  required String token,
  required int messageId,
  ReactionGetReactionsApiVersion? apiVersion,
  String? reaction,
  bool? oCSAPIRequest,
}) async {
  final _request = $getReactions_Request(
    token: token,
    messageId: messageId,
    apiVersion: apiVersion,
    reaction: reaction,
    oCSAPIRequest: oCSAPIRequest,
  );
  final _streamedResponse = await _rootClient.httpClient.send(_request);
  final _response = await _i3.Response.fromStream(_streamedResponse);

  final _serializer = $getReactions_Serializer();
  return _i1.ResponseConverter<ReactionGetReactionsResponseApplicationJson, void>(_serializer).convert(_response);
}