Get debug info about Link connection
Returns debug info when MQTT protocol is enabled
Responses
- 200
- 400
- 401
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
- info string[]
array of strings containing debug info
{
"info": [
"Fri May 20 19:06:42 2022: Exception: MQTT error [-1]: TCP/TLS connect failure (0)"
]
}
{
"info": [
"Fri May 20 19:06:42 2022: Exception: MQTT error [-1]: TCP/TLS connect failure (0)",
"Fri May 20 19:09:17 2022: Disconnected",
"Fri May 20 19:09:17 2022: Connecting to the MQTT server...",
"Fri May 20 19:09:17 2022: Subscribing to topics...",
"Fri May 20 19:09:18 2022: Connected"
]
}
MQTT protocol is disabled
- application/json
- Schema
- Example (from schema)
- Error
Schema
error object
object containing info about error
code stringPossible values: [
invalid_authentication
,permission_denied
,not_valid
,system_error
]Error code
message stringError message
data object
Did not pass validation parameters. Can be represented as an object, which can include field names, arrays, query parameters etc.
param stringextended info on error
{
"error": {
"code": "not_valid",
"message": "Data validation error",
"data": {
"param": "must be an string"
}
}
}
{
"error": {
"code": "system_error",
"message": "MQTT protocol is disabled"
}
}
Please log in
- application/json
- Schema
- Example (from schema)
- Example
Schema
error object
object containing info about error
code stringPossible values: [
invalid_authentication
,permission_denied
,not_valid
,system_error
]Error code
message stringError message
data object
Did not pass validation parameters. Can be represented as an object, which can include field names, arrays, query parameters etc.
param stringextended info on error
{
"error": {
"code": "not_valid",
"message": "Data validation error",
"data": {
"param": "must be an string"
}
}
}
{
"error": {
"code": "invalid_authentication",
"message": "Log In"
}
}
Loading...