Get Image Status
POST
https://apis.autobg.ai/public/api/v1/images/imagesStatusThis feature provides information on the status of the processed/uploaded image or
images. It returns details such as picId, picName, and the status indicating whether the
image has been processed or not.
Request
Body Params application/json
object {0}
Example
{
"batchID": "1004"
}
Request samples
Responses
OK(200)
Unauthorized(401)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
status
boolean
required
message
string
required
data
array [object {4}]
required
picID
integer
optional
picName
string
optional
isProcessed
boolean
optional
isFailed
boolean
optional
Example
{
"status": true,
"message": "string",
"data": [
{
"picID": 0,
"picName": "string",
"isProcessed": true,
"isFailed": true
}
]
}
Last modified: a year ago