discord.joinThread add the connected Discord bot to a thread.
automations/discord-join-thread.automation.ts
Inputs
RequiredthreadId. Optional second argument { account } selects the Discord binding.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Add the connected Discord bot to a thread.
discord.joinThread add the connected Discord bot to a thread.
import { automation, onHttpRequest } from "automate.ax"
import { discord } from "automate.ax/discord"
export default automation("Join thread", () => {
onHttpRequest({ scope: "automation" })
discord.joinThread({ threadId: "345678901234567890" })
})
threadId. Optional second argument { account } selects the Discord binding.