Slack

SLACKBOT_START_CALL

Registers a new call in Slack using `calls.add` for third-party call integration; `created_by` is required if not using a user-specific token.

Remote slackbot

Other tools also called SLACKBOT_START_CALL? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "title": "Title",
      "examples": [
        "Project Alpha Sync",
        "Q3 Planning Session"
      ],
      "description": "The name or title for the call. This will be displayed in Slack to identify the call."
    },
    "users": {
      "type": "string",
      "title": "Users",
      "examples": [
        "'''[{\"slack_id\": \"U012A3BCD4E\"}, {\"external_id\": \"[email protected]\", \"slack_id\": \"U012A3BCD4F\"}]'''",
        "'''[{\"slack_id\": \"W012A3CDE\"}]'''",
        "'''[{\"external_id\": \"meeting-user-789\"}]'''"
      ],
      "description": "A JSON string representing an array of user objects to be registered as participants in the call. Each user object in the array should define a participant using their `slack_id` (Slack User ID) and/or an `external_id` (an identifier from the third-party application, unique to that user within that application). For instance: `'''[{\"slack_id\": \"U012A3BCD4E\"}, {\"external_id\": \"[email protected]\", \"slack_id\": \"U012A3BCD4F\"}]'''`."
    },
    "join_url": {
      "type": "string",
      "title": "Join Url",
      "examples": [
        "https://thirdparty.call/join/meeting123",
        "https://example.com/s/abc-123-def"
      ],
      "description": "The URL required for a client to join the call (e.g., a web join link). This field is mandatory."
    },
    "created_by": {
      "type": "string",
      "title": "Created By",
      "examples": [
        "U012A3BCD4E",
        "U061F7AUR"
      ],
      "description": "Slack user ID of the creator; optional (defaults to authenticated user) if using a user token, otherwise required."
    },
    "date_start": {
      "type": "integer",
      "title": "Date Start",
      "examples": [
        "1678886400",
        "1700000000"
      ],
      "description": "The start time of the call, specified as a UTC UNIX timestamp in seconds. For example, `1678886400` corresponds to March 15, 2023, at 12:00 PM UTC."
    },
    "external_unique_id": {
      "type": "string",
      "title": "External Unique Id",
      "examples": [
        "v=abcdef123456",
        "call-ext-98765uuid-from-provider"
      ],
      "description": "A unique identifier for the call, supplied by the third-party call provider. This ID must be unique across all calls from that specific service. This field is required."
    },
    "external_display_id": {
      "type": "string",
      "title": "External Display Id",
      "examples": [
        "Meeting H.323",
        "CONF-7890"
      ],
      "description": "An optional, human-readable identifier for the call, supplied by the third-party call provider. If provided, this ID will be displayed in the Slack call object interface."
    },
    "desktop_app_join_url": {
      "type": "string",
      "title": "Desktop App Join Url",
      "examples": [
        "your-app-protocol://call/12345",
        "zoomus://zoom.us/join?confno=1234567890"
      ],
      "description": "An optional URL that, when provided, allows Slack clients to attempt to directly launch the third-party call application. This is typically a deep link URI for the specific application."
    }
  }
}
          

Provider

Slack →