Module E

Data Pack Library

Reusable realistic payloads — versioned, scoped to endpoints or schemas, ready for scenarios and execution.

Order Management API
Order — single line, US billing
v1.0.0endpointPOST /orders

Minimal realistic POST /orders payload, US tax jurisdiction.

{
  "customerId": "c_8821",
  "currency": "USD",
  "items": [
    {
      "sku": "WH-1000XM5",
      "qty": 1,
      "unitPrice": 39900
    }
  ],
  "billingAddress": {
    "country": "US",
    "postalCode": "94110"
  }
}
Order Management API
Order — multi-line EU, mixed currency
v1.0.0endpointPOST /orders
{
  "customerId": "c_9912",
  "currency": "EUR",
  "items": [
    {
      "sku": "K-CHAIR-2",
      "qty": 2,
      "unitPrice": 14900
    },
    {
      "sku": "DESK-LAMP",
      "qty": 4,
      "unitPrice": 3900
    }
  ],
  "billingAddress": {
    "country": "HU",
    "postalCode": "1051"
  }
}
Document AI Extraction
Invoice scan — supplier ACME
v1.0.0endpointPOST /v1/extract
{
  "documentUrl": "s3://invoices/acme/2026-06-01.pdf",
  "locale": "en-US",
  "schema": "ExtractedInvoice"
}