{"openapi":"3.1.0","info":{"title":"Multitan Public API","description":"public lead form endpoints only","version":"1.0.0"},"servers":[{"url":"https://www.multitan.co.il"}],"paths":{"/api/leads":{"post":{"operationId":"submitLeadForm","summary":"Submit the public contact form","description":"Accepts the homepage contact form. On success the browser is redirected with HTTP 303.","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["phone"],"properties":{"phone":{"type":"string","description":"Israeli phone number. Required."},"fullname":{"type":"string"},"utm_source":{"type":"string"},"utm_campaign":{"type":"string"},"utm_medium":{"type":"string"},"utm_content":{"type":"string"},"campaign_id":{"type":"string"},"adset_id":{"type":"string"},"ad_id":{"type":"string"},"site_source":{"type":"string"},"placement":{"type":"string"},"utm_referrer":{"type":"string"},"gclid":{"type":"string"},"yclid":{"type":"string"},"fbclid":{"type":"string"},"utm_term":{"type":"string"},"fbp":{"type":"string"},"fbc":{"type":"string"},"url":{"type":"string"},"visitor_uid":{"type":"string"},"analytics":{"type":"string","description":"Optional JSON string of marketing analytics from lead-contract.ts"}}}}}},"responses":{"303":{"description":"Lead accepted; redirect to the homepage contact section","headers":{"Location":{"schema":{"type":"string","example":"/?lead=success#contact"}}}},"400":{"description":"Invalid lead submission","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"Lead delivery failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"502":{"description":"Upstream lead delivery failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"503":{"description":"Lead delivery is not configured","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}},"/api/create-lead":{"post":{"operationId":"createLead","summary":"Submit a lead and receive a JSON success body","description":"Same form fields as POST /api/leads; success is JSON instead of a 303 redirect.","requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","required":["phone"],"properties":{"phone":{"type":"string","description":"Israeli phone number. Required."},"fullname":{"type":"string"},"utm_source":{"type":"string"},"utm_campaign":{"type":"string"},"utm_medium":{"type":"string"},"utm_content":{"type":"string"},"campaign_id":{"type":"string"},"adset_id":{"type":"string"},"ad_id":{"type":"string"},"site_source":{"type":"string"},"placement":{"type":"string"},"utm_referrer":{"type":"string"},"gclid":{"type":"string"},"yclid":{"type":"string"},"fbclid":{"type":"string"},"utm_term":{"type":"string"},"fbp":{"type":"string"},"fbc":{"type":"string"},"url":{"type":"string"},"visitor_uid":{"type":"string"},"analytics":{"type":"string","description":"Optional JSON string of marketing analytics from lead-contract.ts"}}}}}},"responses":{"200":{"description":"Lead accepted","content":{"application/json":{"schema":{"type":"object","required":["response"],"additionalProperties":false,"properties":{"response":{"type":"string","example":"Success!"}}}}}},"400":{"description":"Invalid lead submission","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"Lead delivery failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"502":{"description":"Upstream lead delivery failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"503":{"description":"Lead delivery is not configured","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}},"components":{"schemas":{"Error":{"type":"object","additionalProperties":false,"required":["code","message","hint"],"properties":{"code":{"type":"string"},"message":{"type":"string"},"hint":{"type":"string"}}}}}}