Forum Discussion
Joe_Tran
6 years agoAdvisor
I don't typically use the /device/devices/{id}/properties/{name} endpoint but i would give the following a try:
# Construct URL $resourcePath = "/device/devices/2332/properties/Failover.Cluster.ParentGUID" $url = $URLRoot + $resourcePath $data = ` @" { `"type`" : `"custom`" , `"name`" : `"Failover.Cluster.ParentGUID`" , `"value`" : `"$ClusterID`" } "@ $response = Send-Request ` -accesskey $accessKey ` -accessid $accessId ` -URL $url ` -data $data ` -httpVerb "PUT"
The type key might not be needed. The SwaggerDoc on this endpoint is weird. It literally says that the POST method is supported but all the keys in the model are readOnly?
Related Content
- 15 days ago
- 4 months ago
- 2 years ago
- 7 months ago