Delete a single custom info entry for device
DELETE/api/v1/devices/{deviceId}/custom-info/{key}
Remove a specific custom info entry identified by its key for the specified device.
If the key does not exist, a 404 Not Found will be returned.
After deletion, returns the remaining custom info entries of the device.
Usage
DELETE /devices/{deviceId}/custom-info/{key}
Parameters
deviceId(string, required): the ID of the device.key(string, required): the key of the custom info entry.
Responses
200 OK: key deleted successfully, returns remaining custom info entries.404 Not Found: key not found.
Security
This API requires authentication.
Request
Responses
- 200
- 403
OK
Forbidden