thing.unbind

The thing.unbind command is used to unbind a thing from the current session.

This command requires organization administrator rights.

TR50 Request

{
  "cmd": {
    "command": "thing.unbind",
    "params": {
      "key": "mything"
    }
  }
}

Request Parameters

Name

Type

Required

Description

key

String

Yes

Identifies the thing to unbind from the session.

TR50 Response

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

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