Back-office endpoints: sample captures, bulk account creation and vehicle-lookup retries.
https://api.reportauto.euBack-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.
Returns every stored sample capture.
Authentication API key (admin)
1curl "https://api.reportauto.eu/api/admin/static_captures" \
2 -H "Authorization: API_KEY $CAROOM_API_KEY"Stores a sample capture video against a make. Sent as multipart form data.
Authentication API key (admin)
Make the capture illustrates.
Video file.
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"Removes a stored sample capture.
Authentication API key (admin)
ID of the capture.
1curl -X DELETE "https://api.reportauto.eu/api/admin/static_captures/7" \
2 -H "Authorization: API_KEY $CAROOM_API_KEY"Creates many accounts at once from a CSV — used when onboarding an insurer’s staff. Sent as multipart form data.
Authentication Access token (admin)
CSV of users to create.
Account type to create them as, e.g. Insurer.
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-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)
ID of the vehicle.
1curl -X PATCH "https://api.reportauto.eu/api/cars/13274/retry_us_details" \
2 -H "Authorization: API_KEY $CAROOM_API_KEY"