Skip to main content
POST
/
api
/
v2
/
orders
/
wtr-embed
cURL
curl -X POST https://api.bizmori.com/api/v2/orders/wtr-embed \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "idempotencyKey": "key-embed-001",
    "files": [
      {
        "fileName": "image.jpg",
        "watermarks": [{"text": "MORI_WATERMARK"}]
      }
    ]
  }'
{
  "data": {
    "orderName": "wtr_embed_20260318120000.000",
    "orderId": "424706541233094656",
    "status": "pending",
    "files": [
      {
        "fileId": 2469,
        "fileName": "image.jpg",
        "uploadUrl": "https://s3.ap-northeast-2.amazonaws.com/...?X-Amz-Algorithm=AWS4-HMAC-SHA256&...",
        "fileKey": "wtr-embed/424706541233094656/images/1/image.jpg",
        "fileFormat": "JPG",
        "fileType": "IMG"
      },
      {
        "fileId": 2470,
        "fileName": "document.pdf",
        "uploadUrl": "https://s3.ap-northeast-2.amazonaws.com/...?X-Amz-Algorithm=AWS4-HMAC-SHA256&...",
        "fileKey": "wtr-embed/424706541233094656/documents/2/document.pdf",
        "fileFormat": "PDF",
        "fileType": "DOCUMENT"
      }
    ]
  }
}

주문 결과 다운로드

주문이 complete 상태가 되면 다운로드 URL 발급 엔드포인트를 사용하여 처리된 파일을 다운로드할 수 있습니다:
curl -X GET https://api.bizmori.com/api/v2/orders/{orderId}/download \
  -H "Authorization: Bearer YOUR_API_TOKEN"
주문 생성 후 최대 7일까지 파일을 다운로드할 수 있습니다. 7일이 경과하면 주문이 expired 상태로 전환되며, 이후 파일을 다운로드할 수 없습니다.

Authorizations

Authorization
string
header
required

API Key for external client access

Body

application/json
idempotencyKey
string
required

Idempotency key

files
object[]
required
Required array length: 1 - 100 elements

Response

Order created successfully

data
object