MessageUpdatedData

The messageUpdatedData object contains the following fields:

  • Name
    channelId
    Type
    string
    Description

    The Channel identifier bound to the Message.

  • Name
    sourceId
    Type
    string
    Description

    The Source identifier bound to the Channel.

  • Name
    previousMessage
    Type
    Message
    Description

    Previous Message data.

  • Name
    newMessage
    Type
    Message
    Description

    New Message data.

Example:

Payload

{
  // ... Common fields
  "messageUpdatedData": {
    "previousMessage": {
      // ... Previous Message payload
    },
    "newMessage": {
      // ... New Message payload
    },
    "channelId": "cbc601f1-dec6-4594-9476-51628a17499a",
    "sourceId": "81310ae5-228e-438e-9720-35f737b9ca9f"
  }
}