Reolink · Example Payload

Reolink Ptz Control Example

Pan the camera to the left at medium speed

IoTSecurity CamerasSurveillanceSmart HomeAI Detection

Reolink Ptz Control Example is an example object payload from Reolink, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

exampledescriptionrequestresponse

Example Payload

Raw ↑
{
  "example": "Reolink PTZ Control",
  "description": "Pan the camera to the left at medium speed",
  "request": {
    "method": "POST",
    "url": "https://192.168.1.100/cgi-bin/api.cgi?cmd=PtzCtrl&token=abcd1234efgh5678",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": [
      {
        "cmd": "PtzCtrl",
        "action": 0,
        "param": {
          "channel": 0,
          "op": "Left",
          "speed": 32
        }
      }
    ]
  },
  "response": {
    "status": 200,
    "body": [
      {
        "cmd": "PtzCtrl",
        "code": 0,
        "value": {
          "rspCode": 200
        }
      }
    ]
  }
}