Hello,
I am trying to create a script which modifies the values of the custom properties of a subnet. is it possible to do this with the api?thank you
$customProps = @{ DI = "test1"; Date_changement = "test"; Nom_utilisateur = "amasa03"; Type_segment = "Serveurs"}
$uri = "swis://xxxxxxxxxxxxxxxxxx/Orion/IPAM.GroupNodeDisplayCustomProperties/GroupId=$($groupeId)/CustomProperties";#update the costum prop Set-SwisObject $swis -Uri $uri -Properties $customProps
solved.