Skip to main content
This page uses the Lynx API to update an attribute of a machine. In the step-by-step guide below, you’ll use the following endpoint:
AuthenticationRefer to the Security & Token page of this documentation to learn how to access your tokens, and how to properly use it to authenticate your API requests.

Updating Machine’s Attribute

Use the Bulk Update Machine Attributes endpoint to update specific machine attributes. Provide the MachineID 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.
This table outlines the key attributes available for update: The response will indicate whether the update was entirely successful or if there were any failures.
Response
Where:
  • isFullySuccess indicates whether the update was entirely successful (true if successful, false if there were any issues).
  • failureItems is 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.