Retrieve ADAS images

Retrieve the ADAS calibration images saved in the device. The device must be online or in standby mode.

Step 1: Call this endpoint with the "max" parameter. When the "max" parameter is provided the API will fetch the maximum images from the device and start uploading them to S3.
Step 2: Wait ten minutes.
Step 3: Call this endpoint without the "max" parameter. When the "max" parameter is not provided the API will not fetch images from the device but will return the last 10 images uploaded by the device.

Request
Security:
path Parameters
imei
required
string (IMEI)

The IMEI of the device. The IMEI number can be found on a sticker on the device itself or on the back of the device box.

Example: 357660101000198
query Parameters
max
integer (Maximum ADAS calibration images) [ 1 .. 9 ]
Default: 9

The maximum number of ADAS calibration images to request.

Example: max=4
Responses
200

Successful operation

400

Bad request error

401

Unauthorized error

403

Forbidden error

404

Not found error

500

Internal server error

get/devices/{imei}/adas-calibration-images
Request samples
curl -i -X GET \
  'https://api-prod.surfsight.net/v2/devices/:imei/adas-calibration-images?max=4' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
Response samples
application/json
{
  • "data": {
    },
  • "requestId": "df5fg-45fgfdsg-45fg-45454"
}