Ricoh USA · Example Payload

Theta Web Api Get Options Example

PrintingDocument ManagementWorkplace ServicesImaging360 CamerasWorkflow Automation

Theta Web Api Get Options Example is an example object payload from Ricoh USA, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "http://192.168.1.1/osc/commands/execute",
    "headers": {
      "Content-Type": "application/json;charset=utf-8"
    },
    "body": {
      "name": "camera.getOptions",
      "parameters": {
        "optionNames": [
          "captureMode",
          "iso",
          "shutterSpeed",
          "whiteBalance",
          "exposureProgram"
        ]
      }
    }
  },
  "response": {
    "status": 200,
    "body": {
      "name": "camera.getOptions",
      "state": "done",
      "results": {
        "options": {
          "captureMode": "image",
          "iso": 100,
          "shutterSpeed": 0.004,
          "whiteBalance": "auto",
          "exposureProgram": 2
        }
      }
    }
  }
}