Autobg
  1. Autobg Custom APIs
Autobg
  • Autobg Enterprise Api's
    • Create Template
      POST
    • List Templates
      POST
    • Upload/Process Images without Template.
      POST
    • Upload/Process Images with Template
      POST
    • Get Image Status
      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
    • Download Processed Images
      POST
    • Send Images For QA
      POST
  1. Autobg Custom APIs

Send Images For QA

POST
https://apis.autobg.ai/public/api/v1/images/sendForQA-v2
This API is used to resend previously processed images for QA (Quality Assurance) without deducting additional credits. It’s typically used when you want to redo processing on selected images from a batch — for example, to fix issues or apply updated improvements.
Once submitted, the selected images will be reprocessed and reviewed again using the same or improved settings, ensuring you get the best possible results.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://apis.autobg.ai/public/api/v1/images/sendForQA-v2' \
--header 'Content-Type: application/json' \
--header 'Authorization;' \
--data-raw '{
    "picIDs": [
        "5960",
        "5961"
    ] 
}'
Response Response Example
200 - Success
{
    "status": true,
    "message": "Date Processed",
    "data": {
        "batchID": 1239,
        "images": [
            {
                "fileName": "LeftSide-baleno.jpg",
                "error": false,
                "errorMsg": ""
            },
            {
                "fileName": "58139_org_ECC (2).jpg",
                "error": false,
                "errorMsg": ""
            }
        ]
    }
}

Request

Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Body Params application/json
object {0}
Examples

Responses

🟢200Success
application/json
Body
object {0}
🟠401Unauthorized
🟢200OK
Modified at 2025-06-30 11:14:51
Previous
Download Processed Images
Built with