Skip to main content
Save and restore complete camera configurations using .DAT settings files. Not all cameras support settings download/upload — see Compatibility for the list. See the auto-generated API reference for full request/response schemas.

Download Settings to PC

POST /api/cameras/{cameraId}/settings/download — download the camera’s settings file to the host PC. Body: filename (e.g. CUMSET.DAT).
curl -X POST http://localhost:8080/api/cameras/D10F60149B0C/settings/download \
  -H "Content-Type: application/json" \
  -d '{"filename": "CUMSET.DAT"}'

Upload Settings to Camera

POST /api/cameras/{cameraId}/settings/upload — restore a settings file. Body: filename.
curl -X POST http://localhost:8080/api/cameras/D10F60149B0C/settings/upload \
  -H "Content-Type: application/json" \
  -d '{"filename": "CUMSET.DAT"}'

List Settings Files

GET /api/cameras/{cameraId}/settings/files — list available settings files.
Response
{
  "success": true,
  "files": ["CUMSET.DAT", "CUMSET_Backup.DAT"]
}