# Create/Update camera state request Change the state of a camera from claimed to claimed_paused or vice-versa. Endpoint: POST /put-camera-state-requests Version: 0.0.1 Security: o_auth ## Request fields (application/json): - `cameraId` (string, required) the camera ID of the camera. - `newState` (string, required) The state to which the camera will be set: claimed cameras are processing video and have notifications on, claimed_paused cameras are not processing video, notifications are off and can be re-activated. Enum: "claimed", "claimed_paused" ## Response 202 fields (application/json): - `id` (string, required) - `msg` (string, required) - `status` (string, required) Enum: "created", "failed", "success" ## Response 401 fields (application/json): - `code` (integer) - `message` (string) ## Response 403 fields (application/json): - `code` (integer) - `message` (string) ## Response 404 fields (application/json): - `code` (integer) - `message` (string) ## Response 422 fields (application/json): - `code` (integer) - `message` (string) ## Response 500 fields