Get info about using SSL certificate for Link remote server MQTT protocol
Returns info about using SSL certificate for Link remote server MQTT protocol
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
- uploaded booleanStatus of upload 
- validity_period object- Certificate expiration date status. is_valid boolean- Returns true if certificate is valid valid_from int64- timestamp of the start of certificate validity valid_to int64- timestamp of the end of certificate validity 
{
  "uploaded": true,
  "validity_period": {
    "is_valid": true,
    "valid_from": 1433415878,
    "valid_to": 4294967296
  }
}
{
  "uploaded": true,
  "validity_period": {
    "is_valid": true,
    "valid_from": 1433415878,
    "valid_to": 4294967296
  }
}
Please log in
- application/json
- Schema
- Example (from schema)
- Example
Schema
- error object- Describes the base error user might get code string- Possible values: [ - invalid_authentication,- permission_denied,- not_valid,- system_error]- Error code message string- Error message - data object- Did not pass validation parameters. Can be represented as an object, which can include field names, arrays, query parameters etc. param string- Describes the parameter that did not pass a validation 
{
  "error": {
    "code": "not_valid",
    "message": "Data validation error",
    "data": {
      "param": "must be a string"
    }
  }
}
{
  "error": {
    "code": "invalid_authentication",
    "message": "Log In"
  }
}
Loading...