API Post/Patch call for HardwareDriverSettings

Is there a post or patch api call to update a hardware driver setting field? I can use the get api call to get my camera specific hardware driver settings, but the documentation doens’t have a post or patch call and the response to a post/patch call with api/rest/v1/hardware/{{camID}}/hardwaredriversettings with a body to update a specific setting says it’s not supported. I’m trying to enable https on all cameras.

I have used a patch api call to update a stream setting on all cameras vi csv ingestion and was hoping to do the same with a camera driver settings.

you can update these using e.g. a PATCH to /hardwaredriversettings/{{hardwareId}} with the following body:

{

“hardwareDriverSettings”:

{

    "httpSEnabled": "yes"

}

}

Thank you, this worked perfectly!