Send your website's enquiry form into the CRM
- Make a key with the write scopeAccount → API keys → Create key, tick Allow writes. Copy it once.
- Post the form to /contacts
// on your server (never put the key in browser code) await fetch("https://zynkrow.com/api/v1/contacts", { method: "POST", headers: { "Authorization": "Bearer sk_live_…", "Content-Type": "application/json" }, body: JSON.stringify({ name, email, phone, company, source: "website", notes: message }) }); - See it in the CRMThe lead appears in Contacts & Deals with source website, and the event
contact.createdfires for any webhook you set.