Vehicle inspection records, their damage data, and the comment threads on them.
https://api.reportauto.euA report is the vehicle inspection record behind a listing or claim — the photos, damage locations and condition data captured against a plate.
Opens a report for a registration plate. Uploads and damage data are attached to the returned report ID.
Authentication API key
Registration plate the report is for.
1curl -X POST "https://api.reportauto.eu/v2/reports" \
2 -H "Authorization: API_KEY $CAROOM_API_KEY" \
3 -H "Content-Type: application/json" \
4 -d '{ "reg": "039vmk" }'Returns the report with its uploads, damage locations and condition data.
Authentication API key
ID of the report.
1curl "https://api.reportauto.eu/v2/reports/4290" \
2 -H "Authorization: API_KEY $CAROOM_API_KEY"Updates the report, most often to record where on the vehicle damage was found.
Authentication Access token or API key
ID of the report.
Damage positions on the vehicle. Send an empty array to clear them.
1curl -X PATCH "https://api.reportauto.eu/v2/reports/7732" \
2 -H "Authorization: $CAROOM_ACCESS_TOKEN" \
3 -H "Content-Type: application/json" \
4 -d '{ "damage_locations": [] }'Threaded notes on a report, used by inspectors and partners to discuss specific damage or uploads.
Adds a comment to a report. Pass comment_id to reply inside an existing thread instead of starting a new one.
Authentication API key
ID of the report.
Comment text.
What the comment is about, e.g. "Damage".
Parent comment, when replying in a thread.
1curl -X POST "https://api.reportauto.eu/v2/reports/5620/comments" \
2 -H "Authorization: API_KEY $CAROOM_API_KEY" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "message": "Create a comment thread here",
6 "subject": "Damage",
7 "comment_id": 57
8 }'Returns every comment thread on the report.
Authentication API key
ID of the report.
1curl "https://api.reportauto.eu/v2/reports/5757/comments" \
2 -H "Authorization: API_KEY $CAROOM_API_KEY"Removes a single comment from a report.
Authentication API key
ID of the report.
ID of the comment.
1curl -X DELETE "https://api.reportauto.eu/v2/reports/5620/comments/62" \
2 -H "Authorization: API_KEY $CAROOM_API_KEY"