send_message_to_session
Send a message to an active Devin session and optionally post it to a linked Slack thread or channel. Maintains context between Devin and Slack for streamlined communication and task management.
Instructions
Send a message to an existing Devin session and optionally to the associated Slack thread
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | Message to send to Devin | |
session_id | Yes | The ID of the Devin session | |
slack_channel | No | Optional Slack channel ID to post to | |
slack_thread_ts | No | Optional Slack thread timestamp to reply to |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "Message to send to Devin",
"type": "string"
},
"session_id": {
"description": "The ID of the Devin session",
"type": "string"
},
"slack_channel": {
"description": "Optional Slack channel ID to post to",
"type": "string"
},
"slack_thread_ts": {
"description": "Optional Slack thread timestamp to reply to",
"type": "string"
}
},
"required": [
"session_id",
"message"
],
"type": "object"
}