deletecacert.json & deletedevcert.json
Delete a CA certificate:
GET api/security/config/deletecacert.json?thumbprint=
     <SHA1 thumbprint of certificate to delete>Delete a device certificate:
GET api/security/config/deletedevcert.json?thumbprint=
     <SHA1 thumbprint of certificate to delete>Response data:
Name  | Data Type  | Note  | 
|---|---|---|
result  | Integer  | The result of the operation (0 = success)  | 
JSON success response example:
{
   "result" : 0
}
JSON error response example:
{
   "result" : 21,
   "errordesc":"Failed to parse certificate"
}