Updating Machine’s Attribute
Use the Bulk Update Machine Attributes endpoint to update specific machine attributes. Provide theMachineID as a path parameter, along with the attributes you want to change as body parameters, as exemplified below:
Request
Replace
<MACHINE_ID> with the actual machine’s unique identifier, you want to update the attributes.
The response will indicate whether the update was entirely successful or if there were any failures.
Response
isFullySuccessindicates whether the update was entirely successful (trueif successful,falseif there were any issues).failureItemsis an array of any failed items, where each entry includes:id: The identifier of the failed item (e.g., attribute ID).error: A description of the error encountered during the update.
If
isFullySuccess is true and failureItems is empty. The update was completed successfully without any errors.