picIDs) are validated, associated with the authenticated user, and then submitted as a new processing batch.| Field | Type | Required | Description |
|---|---|---|---|
| picIDs | Array (Integer/String) | Yes | One or more image IDs to resend for QA |
{
"picIDs": [12345, 12346, 12347]
}{
"status": true,
"message": "Data Processed",
"data": {
"batchID": 1474,
"images": [
{
"fileName": "AHL64S_01.jpg",
"error": false,
"errorMsg": ""
}
]
}
}{
"status": false,
"message": "unable to send for QA, pic not found",
"data": {}
}{
"status": false,
"message": "unable to send for QA, <batch configuration error>",
"data": {}
}{
"status": false,
"message": "<template creation error>",
"data": {}
}{
"status": false,
"message": "Insufficient Credits to Process Images.",
"data": {}
}{
"status": false,
"message": "No Active Plan History",
"data": {}
}{
"status": false,
"message": "Template doesn't exists",
"data": {}
}{
"status": false,
"message": "You are not Authorized"
}{
"status": false,
"message": "Rate limit exceeded."
}{
"status": false,
"message": "Internal server error"
}{
"status": false,
"message": "<error message>",
"data": {}
}"status": false in the response body. Always inspect the status field to determine whether the operation succeeded.curl --location 'https://apis.autobg.ai/public/api/v1/images/sendForQA-v2' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"picIDs": [
"5960",
"5961"
]
}'{
"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": ""
}
]
}
}