Discord
Discord is a communication platform designed for creating communities, chatting with friends, and connecting with others through text, voice, and video channels.
Categories: communication
Type: discord/v1
Connections
Version: 1
Bearer Token
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
token | Bot token | STRING | TEXT | true |
Actions
Send Channel Message
Name: sendChannelMessage
Post a new message to a specific #channel you choose.
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
guildId | Guild ID | STRING | SELECT | true | |
channelId | Channel ID | STRING | SELECT | ID of the channel where to send the message. | true |
__item | Message | {STRING(content), BOOLEAN(tts)} | OBJECT_BUILDER | null |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
body | {STRING(id), STRING(content), BOOLEAN(tts)} | OBJECT_BUILDER |
Create Channel
Name: createChannel
Create a new channel
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
guildId | Guild ID | STRING | SELECT | true | |
__item | Channel | {STRING(name), INTEGER(type)} | OBJECT_BUILDER | null |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
body | {STRING(id), INTEGER(type), STRING(name)} | OBJECT_BUILDER |
Send Direct Message
Name: sendDirectMessage
Send direct message guild member.
Properties
Name | Label | Type | Control Type | Description | Required |
---|---|---|---|---|---|
guildId | Guild ID | STRING | SELECT | true | |
recipient_id | Recipient | STRING | SELECT | The recipient to open a DM channel with. | true |
content | Message Text | STRING | TEXT | Message contents (up to 2000 characters) | true |
tts | Text to Speech | BOOLEAN | SELECT | True if this is a TTS message | false |
Output
Type: OBJECT
Properties
Name | Type | Control Type |
---|---|---|
body | {STRING(id)} | OBJECT_BUILDER |