Slack

SLACKBOT_UPDATE_CALL_INFORMATION

Updates the title, join URL, or desktop app join URL for an existing Slack call identified by its ID.

Remote slackbot

Other tools also called SLACKBOT_UPDATE_CALL_INFORMATION? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "title": "Id",
      "examples": [
        "R0123ABCDEF",
        "R9876ZYXWVU"
      ],
      "description": "Unique identifier of the call to update, obtained when a call is created (e.g., via `calls.add` Slack API method)."
    },
    "title": {
      "type": "string",
      "title": "Title",
      "examples": [
        "Project Alpha Review",
        "Q3 Planning Session"
      ],
      "description": "New title for the call."
    },
    "join_url": {
      "type": "string",
      "title": "Join Url",
      "examples": [
        "https://example.com/join/meeting/12345",
        "https://another-service.com/call/abc987"
      ],
      "description": "New URL for clients to join the call."
    },
    "desktop_app_join_url": {
      "type": "string",
      "title": "Desktop App Join Url",
      "examples": [
        "your-app-protocol://join?call_id=12345",
        "slack://call?id=abcdefg"
      ],
      "description": "URL to directly launch the third-party call application from Slack clients."
    }
  }
}
          

Provider

Slack →