Updating multiple computer settings with REST API

Is it possible to update multiple custom computer settings at once with the REST API? If so, how should the XML be formatted? I assume I could have multiple name/value tuples in the XML?

What resource should I POST to? I’ve tried using /api/computer//setting but get an error saying the property doesn’t exist.

Never mind, I figured it out.

First I needed to POST and not PUT.
Next the resource needs to be /api/computer/{computerid}/settings - not “setting” and no trailing slash.