SetUp

Set up re-calibrate

Request camera recalibration between DMS and ADAS.

Securityapi key and Authorization
Request
path Parameters
serial_number
required
string

serial number or cid(certificate id)

Responses
200

OK

post/V2/device/{serial_number}/setup/re-calibrate
Response samples
application/json
{
  • "uq": "3903dc78-9349-41a0-9662-d1e33de117f8",
  • "doc_version": "latest",
  • "result": true,
  • "code": "S00000",
  • "message": "string",
  • "build": "string",
  • "data": {
    }
}

Set up camera height

Used to set the camera height.

Securityapi key and Authorization
Request
path Parameters
serial_number
required
string

serial number or cid(certificate id)

Request Body schema:
camera_height
required
integer <int32> [ 120 .. 300 ]
Responses
200

OK

post/V2/device/{serial_number}/setup/camera-height
Request samples
{
  • "camera_height": 120
}
Response samples
application/json
{
  • "uq": "3903dc78-9349-41a0-9662-d1e33de117f8",
  • "doc_version": "latest",
  • "result": true,
  • "code": "S00000",
  • "message": "string",
  • "build": "string",
  • "data": {
    }
}

Set up installation location

This API allows users to specify the installation position of a dashcam. The location can be set for left-hand drive vehicles, right-hand drive vehicles, or centered on the dashboard.

location string Yes Specifies the installation location of the dashcam. "Center", "Left", "Right"

• Center:The dashcam is installed in the center of the dashboard (For UVC Camera).

• Left:The dashcam is installed on the left side of the vehicle, suitable for left-hand drive vehicles.

• Right:The dashcam is installed on the right side of the vehicle, suitable for right-hand drive vehicles.

Securityapi key and Authorization
Request
path Parameters
serial_number
required
string

serial number or cid(certificate id)

Request Body schema:
location
required
string (LocationEnum)

Center

Left

Right

Enum: "Center" "Left" "Right"
Responses
200

OK

post/V2/device/{serial_number}/setup/install-location
Request samples
{
  • "location": "Center"
}
Response samples
application/json
{
  • "uq": "3903dc78-9349-41a0-9662-d1e33de117f8",
  • "doc_version": "latest",
  • "result": true,
  • "code": "S00000",
  • "message": "string",
  • "build": "string",
  • "data": {
    }
}

Setup DMS Camera

Set up the DMS camera, either using UVC or an embedded camera. When you set the camera position to the center through the previous API, please proceed to enable the DMS function on the UVC Camera using this API.

Securityapi key and Authorization
Request
path Parameters
serial_number
required
string

serial number or cid(certificate id)

Request Body schema:
facing
required
string non-empty EMBEDDED|UVC

The type of DMS camera to configure (EMBEDDED for inward cam, UVC for rear cam).

Responses
200

OK

post/V2/device/{serial_number}/setup/dms-camera
Request samples
{
  • "facing": "string"
}
Response samples
application/json
{
  • "uq": "3903dc78-9349-41a0-9662-d1e33de117f8",
  • "doc_version": "latest",
  • "result": true,
  • "code": "S00000",
  • "message": "string",
  • "build": "string",
  • "data": {
    }
}