Can I set the interface status to Unmanaged using the REST API? How? Thank you.
In new REST API (the one loaded as server module) you can do POST on endpoint /v1/objects/{object-id}/set-managed where {object-id} is ID of interface object and content is JSON
{
"managed":false
}
For old REST API (the one implemented as Java web app) request body will be the same but URL will look like /objects/{object-id}/set-managed
Best regards,
Victor
I am using the version of the software package integration tool netxms-websvc-5.2.1.war. Where can I find documentation for the new REST API that is used as a module on the server? Thank you