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

Upload/Process Images with Template with Dynamic Branding

POST
https://apis.autobg.ai/public/api/v1/images/uploadWithTemplateCCDynamicBranding
Use 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 and allowing you to process images with dynamic branding images for same template.
1. For AI Results
"processType": "ai"
2. For QA Results
"processType": "collab"
This API is rate-limited to 10 requests per minute per user.

Request

Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Body Params multipart/form-data

Responses

🟢200OK
application/json
Bodyapplication/json

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://apis.autobg.ai/public/api/v1/images/uploadWithTemplateCCDynamicBranding' \
--header 'Authorization: <api-key>' \
--form 'cc=@"cmMtdXBsb2FkLTE3MDczNzc5Mjg2MjMtMw==/LeftSide-baleno (1).jpg"' \
--form 'dynamicBrandImage=@"cmMtdXBsb2FkLTE3NzMyMzcxNjUyODctMw==/autobg.jpg"' \
--form 'brandAlignment="TL"' \
--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"
            }
        ]
    }
}
Modified at 2026-03-11 14:07:26
Previous
Upload/Process Images with Template
Next
Get Image Status
Built with