slack/reactions_remove
Call the Slack reactions.remove API method
const app = mvfm(prelude, console_, slack_);
const prog = app({}, ($) => {
const result = $.slack.reactions.remove({ channel: "C0123456789", name: "thumbsup", timestamp: "1700000000.000001" });
return $.begin($.console.log(result), result);
});
await fold(defaults(app), prog); Ctrl+Enter