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

Upload/Process Images with Template

POST
https://apis.autobg.ai/public/api/v1/images/uploadWithTemplateCC
Utilize this API if you intend to process or upload images using a custom template that
you've created through the 'Create Template API.' This allows you to apply specific
customizations to the processing or uploading of images based on your predefined template.
1.
For AI Results
"processType": "ai"
2.
For QA Results
"processType": "collab"
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://apis.autobg.ai/public/api/v1/images/uploadWithTemplateCC' \
--header 'Authorization;' \
--form 'cc=@"cmMtdXBsb2FkLTE3MDczNzc5Mjg2MjMtMw==/LeftSide-baleno (1).jpg"' \
--form 'numberPlate="apidog-test"' \
--form 'templateCC="6"' \
--form 'processType="collab"'
Response Response Example
200 - Example 1
{
    "status": true,
    "message": "string",
    "data": {
        "batchID": 0,
        "images": [
            {
                "fileName": "string",
                "error": true,
                "errorMsg": "string"
            }
        ]
    }
}

Request

Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Body Params multipart/form-data
cc
file 
required
This parameter represents the image of your car that you wish to upload or process using the Autobg.ai platform
Example:
cmMtdXBsb2FkLTE3MDczNzc5Mjg2MjMtMw==/LeftSide-baleno (1).jpg
numberPlate
string 
required
This parameter specifies the unique identification number of the car, used to distinguish a batch of images for a particular vehicle. If you intend to process or upload multiple images (e.g., 20) of the same car, ensure that you maintain the same 'numberPlate' parameter throughout the API calls. Change the 'numberPlate' parameter only if you are working with images of a different car.
Example:
apidog-test
templateCC
integer 
required
This parameter specifies the unique identifier (ID) of the template you
want to use for processing your car images. You can retrieve this template ID through the
‘List Templates' API or find it in the response of the 'Create Template' API.
Example:
6
processType
string 
required
This parameter is mandatory for batch processing, For AI Instant Results "processType": "ai", For QA Results "processType": "collab"
Example:
collab

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 2024-09-12 07:46:32
Previous
Upload/Process Images without Template.
Next
Get Image Status
Built with