Health Endpoint
Validate deployment and environment setup before enabling business workflows.
GET /api/healthCYANLOG SUITE
Quote preview, contract template selection, and health checks are ready for cloud integration with Supabase.
Validate deployment and environment setup before enabling business workflows.
GET /api/healthCalculates subtotal, tax, discount, and chooses contract template by product version.
POST /api/quote/previewcurl -X POST http://localhost:3000/api/quote/preview \
-H "Content-Type: application/json" \
-d '{
"version": "growth",
"discountRate": 0.1,
"items": [
{"sku": "CORE-001", "name": "Core License", "unitPriceCny": 12000, "quantity": 2, "taxRate": 0.13},
{"sku": "SVC-001", "name": "Implementation", "unitPriceCny": 5000, "quantity": 1, "taxRate": 0.06}
]
}'