A message was posted in a multiparty direct message channel

Facts

Required scopes

Works with

Events API

This example appears wrapped in the standard event wrapper used by all events delivered on the Events API.

{
    "token": "one-long-verification-token",
    "team_id": "T061EG9R6",
    "api_app_id": "A0PNCHHK2",
    "event": {
        "type": "message",
        "channel": "G024BE91L",
        "user": "U2147483697",
        "text": "Let's make a pact.",
        "ts": "1355517523.000005",
        "event_ts": "1355517523.000005",
        "channel_type": "mpim"
    },
    "type": "event_callback",
    "authed_teams": [
        "T061EG9R6"
    ],
    "event_id": "Ev0PV52K21",
    "event_time": 1355517523
}

The semantics for this message event type are similar to the core message event sent through the RTM API. Messages often include many more fields than those shown above.

Differentiate multi-party direct messages from other message.* events by looking for the event's channel_type field set to "mpim".

When an event occurs, we will send an HTTP POST request to your Request URL. The outer payload is uniform across all Events API methods, and contains fields like team_id and event. Learn more