{"openapi":"3.1.0","info":{"title":"POST /api/v1/inventory/reorder/cash-impact","version":"1.0.0","description":"Preview the cash impact of a reorder"},"servers":[{"url":"https://api.ondayzero.com","description":"Production"}],"paths":{"/api/v1/inventory/reorder/cash-impact":{"post":{"tags":["inventory:reorder"],"summary":"Preview the cash impact of a reorder","description":"Model the effect of placing one or more (not-yet-created) purchase orders on the 13-week cash forecast. Runs the live forecast with and without the proposed POs and returns the delta -- including how far the projected cash low point moves -- so the operator can see the cash impact of a reorder before committing to it.","operationId":"reorder_cash_impact_api_v1_inventory_reorder_cash_impact_post","parameters":[{"name":"authorization","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}},{"name":"x-business-id","in":"header","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"X-Business-Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReorderCashImpactRequest"}}}},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReorderCashImpactResponse"}}}},"400":{"description":"Bad Request - Invalid input","content":{"application/json":{"example":{"detail":"Invalid request parameters"}}}},"401":{"description":"Unauthorized - Authentication required","content":{"application/json":{"example":{"detail":"Not authenticated"}}}},"403":{"description":"Forbidden - Insufficient permissions","content":{"application/json":{"example":{"detail":"Not enough permissions"}}}},"404":{"description":"Not Found - Resource does not exist","content":{"application/json":{"example":{"detail":"Resource not found"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"ProposedPurchaseOrder":{"properties":{"amount_cents":{"type":"integer","exclusiveMinimum":0.0,"title":"Amount Cents","description":"Total PO cost in cents."},"week_number":{"anyOf":[{"type":"integer","maximum":52.0,"minimum":1.0},{"type":"null"}],"title":"Week Number","description":"Forecast week the cash leaves (1-indexed). Default 1."},"expected_pay_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Expected Pay Date","description":"ISO date the cash leaves (overrides week_number)."},"variant_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Variant Id"},"label":{"anyOf":[{"type":"string","maxLength":200},{"type":"null"}],"title":"Label"}},"type":"object","required":["amount_cents"],"title":"ProposedPurchaseOrder","description":"A purchase order being considered but not yet placed."},"ReorderCashImpactRequest":{"properties":{"proposed_pos":{"items":{"$ref":"#/components/schemas/ProposedPurchaseOrder"},"type":"array","title":"Proposed Pos"},"weeks":{"type":"integer","maximum":52.0,"minimum":1.0,"title":"Weeks","default":13}},"type":"object","title":"ReorderCashImpactRequest"},"ReorderCashImpactResponse":{"properties":{"proposed_total_cents":{"type":"integer","title":"Proposed Total Cents","default":0},"proposed_po_count":{"type":"integer","title":"Proposed Po Count","default":0},"weeks":{"type":"integer","title":"Weeks","default":13},"baseline_ending_cash_cents":{"type":"integer","title":"Baseline Ending Cash Cents","default":0},"scenario_ending_cash_cents":{"type":"integer","title":"Scenario Ending Cash Cents","default":0},"ending_cash_delta_cents":{"type":"integer","title":"Ending Cash Delta Cents","default":0},"baseline_lowest_cash_cents":{"type":"integer","title":"Baseline Lowest Cash Cents","default":0},"scenario_lowest_cash_cents":{"type":"integer","title":"Scenario Lowest Cash Cents","default":0},"lowest_cash_delta_cents":{"type":"integer","title":"Lowest Cash Delta Cents","default":0},"baseline_lowest_cash_week":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Baseline Lowest Cash Week"},"scenario_lowest_cash_week":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Scenario Lowest Cash Week"},"week_deltas":{"items":{"$ref":"#/components/schemas/ReorderCashImpactWeekDelta"},"type":"array","title":"Week Deltas"},"headline":{"type":"string","title":"Headline","default":""}},"type":"object","title":"ReorderCashImpactResponse"},"ReorderCashImpactWeekDelta":{"properties":{"week":{"type":"integer","title":"Week"},"start_date":{"type":"string","title":"Start Date"},"baseline_ending_cash_cents":{"type":"integer","title":"Baseline Ending Cash Cents"},"scenario_ending_cash_cents":{"type":"integer","title":"Scenario Ending Cash Cents"},"delta_cents":{"type":"integer","title":"Delta Cents"}},"type":"object","required":["week","start_date","baseline_ending_cash_cents","scenario_ending_cash_cents","delta_cents"],"title":"ReorderCashImpactWeekDelta"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"},"input":{"title":"Input"},"ctx":{"type":"object","title":"Context"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"}},"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"API Token","description":"API token authentication. Format: `Bearer dz_...`"}}},"security":[{"BearerAuth":[]}]}