# Place Subcontract Order Creates a new subcontract order. The customerId and subContractId are automatically assigned on the backend. Endpoint: POST /SubContractOrders Version: 1.0.0 Security: bearerAuth ## Request fields (application/json): - `id` (string) Optional when creating a new order - `orderDate` (string) Example: "2025-10-14T06:15:00.000Z" - `reference` (string) Example: "PO-456" - `items` (array) - `items.productId` (string) Example: "3fa85f64-5717-4562-b3fc-2c963f66afa6" - `items.quantity` (number) Example: 1000 - `items.price` (number) Example: 25.5 ## Response 200 fields (application/json): - `id` (string) Example: "3fa85f64-5717-4562-b3fc-2c963f66afa6" - `message` (string) Example: "Subcontract order created successfully"