mailbox.update

The mailbox.update command pushes an update to a mailbox message.

TR50 Request

{
  "cmd": {
    "command": "mailbox.update",
    "params": {
      "id": "500000000000000000000001",
      "msg": "message"
    }
  }
}

Request Parameters

Name

Type

Required

Description

id

String

Yes

The mailbox message object id.

msg

String

The message to send to the mailbox message.

TR50 Response

If the command is sent successfully a success message is returned. Otherwise, an error and error message will be returned.

{
  "cmd": {
    "success": true
  }
}