메인 콘텐츠로 건너뛰기
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"
  }
}

인증

Authorization
string
header
필수

외부 클라이언트 접근을 위한 API 키

본문

application/json
idempotencyKey
string
필수

중복 요청 방지를 위한 멱등성 키. 동일한 키로 재요청 시 재처리 없이 현재 주문 상태를 반환합니다.

예시:

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

orderId
string
필수

주문 ID

응답

처리 시작됨

data
object