Seek solution for the error attached

Model : N35-804-16-BL
SN:182225

Problem / Question

detailled problem description

Error code 1 in the C API is ItemProtected. That means you are trying to overwrite a node that is read-only.

Without seeing the code you are trying to run I cannot tell much. But my first guess would be that you are trying to apply a very high level node (e.g. the complete camera or parameter node) without the onlyWriteableNodes parameter set (which is probably what you want). See the documentation of the nxLibSetJson API function (or the equivalent for the programming language you are using) for more information.

Thanks for your inputs Daniel !!