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

Upload/Process S3 Urls without Template.

POST
https://apis.autobg.ai/public/api/v1/images/uploadWithoutTemplateCC-v2
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/uploadWithoutTemplateCC-v2' \
--header 'Content-Type: application/json' \
--header 'Authorization;' \
--data-raw '{
    "numberPlate": "TestWithoutTemplate",
    "processType": "collab",
    "clientS3Uris": [
        "https://s3.ap-south-1.amazonaws.com/picv1.0/Test/LeftSide-baleno.jpg",
        "https://s3.ap-south-1.amazonaws.com/picv1.0/Test/RightHalf-baleno.jpg",
        "https://s3.ap-south-1.amazonaws.com/picv1.0/Test/RightSide-baleno.jpg"
  ]
}'
Response Response Example
200 - Success
{
    "status": true,
    "message": "Date Processed",
    "data": {
        "batchID": 1206,
        "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

🟢200Success
application/json
Body
object {0}
🟠401Unauthorized
Modified at 2024-04-12 08:05:33
Previous
replaceNumPlate-v3
Next
Upload/Process S3 Urls with Template
Built with