MVFM

slack/reactions_get

Call the Slack reactions.get API method

const app = mvfm(prelude, console_, slack_);
const prog = app({}, ($) => {
  const result = $.slack.reactions.get({ channel: "C0123456789", timestamp: "1700000000.000001" });
  return $.begin($.console.log(result), result);
});
await fold(defaults(app), prog);
Ctrl+Enter