mailbox.ack
The mailbox.ack command acknowledges the execution of a method.
TR50 Request
{
"cmd": {
"command": "mailbox.ack",
"params": {
"id": "500000000000000000000001",
"errorCode": 0,
"errorMessage": "",
"params": {
...
}
}
}
}
Request Parameters
Name |
Type |
Required |
Description |
---|---|---|---|
id |
String |
Yes |
The id of the mailbox message. |
errorCode |
Integer |
|
The error code. |
errorMessage |
String |
|
The error message. |
params |
Object |
|
The parameter object. |
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
}
}