Admin

Back-office endpoints: sample captures, bulk account creation and vehicle-lookup retries.

Base URL
https://api.reportauto.eu

Admin

Back-office endpoints. Static captures are the sample walkaround videos shown in the capture flow when a real one is not available; the retry endpoints re-run a vehicle lookup that failed.

List static captures

GET/api/admin/static_captures

Returns every stored sample capture.

Authentication API key (admin)

cURL
1curl "https://api.reportauto.eu/api/admin/static_captures" \
2  -H "Authorization: API_KEY $CAROOM_API_KEY"

Upload a static capture

POST/api/admin/static_captures

Stores a sample capture video against a make. Sent as multipart form data.

Authentication API key (admin)

Parameters

makestringRequired

Make the capture illustrates.

capturefileRequired

Video file.

cURL
1curl -X POST "https://api.reportauto.eu/api/admin/static_captures" \
2  -H "Authorization: API_KEY $CAROOM_API_KEY" \
3  -F "make=Honda" \
4  -F "capture=@/path/to/capture.mp4"

Delete a static capture

DELETE/api/admin/static_captures/:capture_id

Removes a stored sample capture.

Authentication API key (admin)

Path parameters

capture_idintegerRequired

ID of the capture.

cURL
1curl -X DELETE "https://api.reportauto.eu/api/admin/static_captures/7" \
2  -H "Authorization: API_KEY $CAROOM_API_KEY"

Create users in bulk

POST/api/admin/create_bulk_user

Creates many accounts at once from a CSV — used when onboarding an insurer’s staff. Sent as multipart form data.

Authentication Access token (admin)

Parameters

usersfileRequired

CSV of users to create.

typestringRequired

Account type to create them as, e.g. Insurer.

cURL
1curl -X POST "https://api.reportauto.eu/api/admin/create_bulk_user" \
2  -H "Authorization: $CAROOM_ADMIN_TOKEN" \
3  -F "users=@/path/to/users.csv" \
4  -F "type=Insurer"

Re-fetch US vehicle details

PATCH/api/cars/:car_id/retry_us_details

Re-runs the US plate lookup for a vehicle whose details came back empty. The non-US equivalent is /retry_mnt_details — see Vehicles.

Authentication API key (admin)

Path parameters

car_idintegerRequired

ID of the vehicle.

cURL
1curl -X PATCH "https://api.reportauto.eu/api/cars/13274/retry_us_details" \
2  -H "Authorization: API_KEY $CAROOM_API_KEY"