1. Autobg Enterprise Api's
Autobg
  • Autobg Enterprise Api's
    • Create Template
      POST
    • List Templates
      POST
    • Upload/Process Images without Template.
      POST
    • Upload/Process Images with Template
      POST
    • Upload/Process Images with Template with Dynamic Branding
      POST
    • Get Image Status
      POST
    • Report Images
      POST
    • Get Images in Base64 Format
      GET
    • Get Images Raw
      GET
    • User Usage
      POST
    • User Credit Details
      POST
    • replaceNumPlateS3-v3
      POST
    • replaceNumPlate-v3
      POST
  • Autobg Custom APIs
    • Upload/Process S3 Urls without Template.
      POST
    • Upload/Process S3 Urls with Template
      POST
    • Upload/Process S3 Urls with Template with Dynamic Branding
      POST
    • Download Processed Images
      POST
    • Send Images For QA
      POST
  1. Autobg Enterprise Api's

Report Images

POST
https://apis.autobg.ai/public/api/v1/images/reportImages
This API is used to report images for QA (Quality Assurance) without deducting additional credits. It’s typically used when you want to report images from any batch — to fix issues or apply updated improvements.
Once submitted, the selected images will be reported and reviewed again using the same or improved settings, ensuring you get the best possible results.
This API is rate-limited to 10 requests per minute per user.
Allowed reportReason's values are: [Bad clipping, Alignment of Road, Number plate, Window see-through, "Logo", "Other"]
Max length of picIDs to report images at once is 10 IDs.

Request

Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Body Params application/json

Examples

Responses

🟢200Success
application/json
Bodyapplication/json

🟠401Unauthorized
🟢200OK
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://apis.autobg.ai/public/api/v1/images/reportImages' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
  "picIDs": [
    512251,
    512252
  ],
  "reportReason": [
    "Bad clipping",
    "Alignment of Road"
  ],
  "reportComment": "Clipping around edges is incorrect"
}'
Response Response Example
200 - Success
{
    "status": true,
    "message": "Images reported successfully.",
    "data": ""
}
Modified at 2026-05-11 08:31:58
Previous
Get Image Status
Next
Get Images in Base64 Format
Built with