{"openapi":"3.1.0","info":{"title":"POST /api/v1/inventory/accounts-payable/{bill_id}/three-way-match","version":"1.0.0","description":"Recompute the three-way match for a bill"},"servers":[{"url":"https://api.ondayzero.com","description":"Production"}],"paths":{"/api/v1/inventory/accounts-payable/{bill_id}/three-way-match":{"post":{"tags":["inventory:accounts_payable"],"summary":"Recompute the three-way match for a bill","description":"Forces a fresh PO -> Receipt -> Invoice comparison for the bill and writes the outcome onto `bill.match_status` and the variance columns. Idempotent.","operationId":"recompute_three_way_match_api_v1_inventory_accounts_payable__bill_id__three_way_match_post","parameters":[{"name":"bill_id","in":"path","required":true,"schema":{"type":"string","title":"Bill Id"}},{"name":"qty_tolerance","in":"query","required":false,"schema":{"type":"integer","minimum":0,"description":"Unit tolerance before a qty drift is flagged.","default":0,"title":"Qty Tolerance"},"description":"Unit tolerance before a qty drift is flagged."},{"name":"price_tolerance_cents","in":"query","required":false,"schema":{"type":"integer","minimum":0,"description":"Cents tolerance before a price drift is flagged.","default":500,"title":"Price Tolerance Cents"},"description":"Cents tolerance before a price drift is flagged."},{"name":"price_tolerance_pct","in":"query","required":false,"schema":{"type":"number","maximum":1.0,"minimum":0,"description":"Percent-of-PO-total tolerance (combined with cents floor).","default":0.01,"title":"Price Tolerance Pct"},"description":"Percent-of-PO-total tolerance (combined with cents floor)."},{"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"}}],"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ThreeWayMatchResponse"}}}},"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"},"ThreeWayMatchLineDrift":{"properties":{"variant_id":{"type":"string","title":"Variant Id"},"ordered_qty":{"type":"integer","title":"Ordered Qty"},"received_qty":{"type":"integer","title":"Received Qty"},"variance":{"type":"integer","title":"Variance"}},"type":"object","required":["variant_id","ordered_qty","received_qty","variance"],"title":"ThreeWayMatchLineDrift","description":"One line whose received qty differs from the ordered qty."},"ThreeWayMatchResponse":{"properties":{"match_status":{"type":"string","title":"Match Status"},"variance_qty":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Variance Qty"},"variance_amount_cents":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Variance Amount Cents"},"reason":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Reason"},"lines":{"items":{"$ref":"#/components/schemas/ThreeWayMatchLineDrift"},"type":"array","title":"Lines"}},"type":"object","required":["match_status"],"title":"ThreeWayMatchResponse","description":"Result of a 3-way-match evaluation for a single bill."},"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":[]}]}