Update an Equipment Property

You can update the details of a property for a specific equipment instance.

Request Parameters

The following parameter must be specified in the request.

ParameterTypeRequiredDescription
propertyNameStringYUpdate the details of the named property.

Where <id> is the unique identifier for the equipment instance.

HTTP MethodPUT
URLhttps://serverName:port/ProficyWebApi/Equipment/<id>?propertyName=<property name>
Return ValueUpdates the details of the named property for the specified equipment instance
Message Body

Property details are provided in JSON format in the message body.

{
  "Description": "Color changed to green",
  "UnitOfMeasure": "",
  "Value": "Green"
}
Response BodyThe response to a successful update is a status of 200 OK.