Skip to main content
POST
/
api
/
v2
/
orders
/
ai-detection
/
confirm
cURL
curl -X POST "https://api.bizmori.com/api/v2/orders/ai-detection/confirm" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"idempotencyKey": "YOUR_IDEMPOTENCY_KEY", "orderId": "ORDER_ID"}'
{
  "data": {
    "orderId": "<string>",
    "status": "inProgress"
  }
}
Call this endpoint only after uploading the image to the presigned URL from the Create order step. If the file has not been uploaded yet, the request will return an error.

Authorizations

Authorization
string
header
required

API Key for external client access

Body

application/json
idempotencyKey
string
required

Unique key to prevent duplicate requests. If the same key is used in a retry, the current order status is returned without reprocessing.

Example:

"01950c7e-f6b2-7000-8000-abcdef123456"

orderId
string
required

Order ID

Response

Processing started

data
object