Autobg
  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
    • 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 Enterprise Api's

replaceNumPlateS3-v3

POST
https://apis.autobg.ai/public/api/v1/images/replaceNumPlateS3-v3
This feature allows users to process images using S3 Urls without associating it with a predefined
template. Users can provide urls independently, and the system will process them
without template constraints, offering flexibility in numberplate processing.
numPlateProcessor (integer)
This parameter is mandatory to process the car's number plate accordingly. Enter 1 to hide the car's number plate with a solid white color, Enter 2 to replace it with your provided number plate.
1.
For AI Results
"processType": "ai"
2.
For QA Results
"processType": "collab"
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST 'https://apis.autobg.ai/public/api/v1/images/replaceNumPlateS3-v3' \
--header 'Content-Type: application/json' \
--header 'Authorization;' \
--data-raw '{
    "numberPlate": "Apidog-Test",
    "clientS3Uris": [
        "https://s3.ap-south-1.amazonaws.com/picv1.0/Test/Front-baleno.jpg"
    ],
    "numberPlateS3String": "https://s3.ap-south-1.amazonaws.com/picv1.0/Test/num_plate.jpg",
    "numPlateProcessor": 2,
    "processType": "ai"
}'
Response Response Example
200 - Example 1
{
    "status": true,
    "message": "Date Processed",
    "data": {
        "batchID": 1208,
        "images": [
            {
                "fileName": "LeftSide-baleno.jpg",
                "error": false,
                "errorMsg": ""
            },
            {
                "fileName": "RightHalf-baleno.jpg",
                "error": false,
                "errorMsg": ""
            },
            {
                "fileName": "RightSide-baleno.jpg",
                "error": false,
                "errorMsg": ""
            }
        ]
    }
}

Request

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

Responses

🟢200OK
application/json
Body
status
boolean 
required
message
string 
required
data
object 
required
batchID
integer 
required
images
array [object {3}] 
required
🟠401Unauthorized
Modified at 2025-04-16 08:06:55
Previous
User Credit Details
Next
replaceNumPlate-v3
Built with