Slack

SLACK_DELETE_A_SCHEDULED_MESSAGE_IN_A_CHAT

Deletes a pending, unsent scheduled message from the specified Slack channel, identified by its `scheduled_message_id`.

Remote slack

Other tools also called SLACK_DELETE_A_SCHEDULED_MESSAGE_IN_A_CHAT? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "as_user": {
      "type": "boolean",
      "description": "Pass `true` to delete the message as the authenticated user (bots are considered authed users here, uses `chat:write:user` scope); if `false` or omitted, deletes as a bot (uses `chat:write:bot` scope).\nExamples:\n  \"true\"\n  \"false\""
    },
    "channel": {
      "type": "string",
      "description": "ID of the channel, private group, or DM conversation where the message is scheduled.\nExamples:\n  \"C1234567890\"\n  \"G0123456789\"\n  \"D0123456789\""
    },
    "scheduled_message_id": {
      "type": "string",
      "description": "Unique ID (`scheduled_message_id`) of the message to be deleted; obtained from `chat.scheduleMessage` response.\nExamples:\n  \"Q123ABCDEF456\"\n  \"SM0123456789\""
    }
  }
}
          

Provider

Slack →