> ## Documentation Index
> Fetch the complete documentation index at: https://docs.comforthub.app/llms.txt
> Use this file to discover all available pages before exploring further.

# What lives where

> Products, materials, suppliers, technicians, territories, checklist templates and agents: which system you type each into

export const Touches = ({systems}) => <p>
    <strong>Systems involved:</strong>{" "}
    {systems.split(",").map((s, i) => <span key={s}>
        {i > 0 ? " · " : ""}
        <a href={"/systems/" + s.trim()}>{s.trim().replace(/-/g, " ")}</a>
      </span>)}
  </p>;

<Touches systems="zoho-crm, supabase-backend, quickbooks, the-7am-app" />

Everything the business runs on is typed into Zoho once. The engine copies it to our side within seconds, and for the things money touches it makes the QuickBooks record too. Nobody types setup data into QuickBooks or the app. Which system owns each record after that is on [Who is the source of truth](/systems/who-is-the-source-of-truth).

| Setup data                  | Typed in                      | What the engine makes from it                                                                                                                                                                       |
| --------------------------- | ----------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Product (something we sell) | Zoho, **Products**            | A catalog item on our side and a QuickBooks item; see [Add a product](/handbook/catalog-and-staff/add-a-product)                                                                                    |
| Stock material              | Zoho, **Stock Materials**     | A material on our side, which the app lists                                                                                                                                                         |
| Supplier and its branches   | Zoho, **Vendors**             | A supplier on our side with its branches; each branch gets a Street View picture; see [Add a supplier and its branches](/handbook/catalog-and-staff/add-a-supplier)                                 |
| Technician                  | Zoho, **Technicians**         | A technician on our side, and an app login when the record has an email; see [Add a technician](/handbook/catalog-and-staff/add-a-technician)                                                       |
| Service territory           | Zoho, **Service Territories** | A territory on our side; a developer draws its map area; see [Draw a service territory](/handbook/catalog-and-staff/draw-a-service-territory)                                                       |
| Checklist template          | Zoho, **Checklist Templates** | A template on our side with its questions; see [Author a checklist template](/handbook/catalog-and-staff/author-a-checklist-template)                                                               |
| Phone agent                 | Zoho, **Agents**              | An agent on our side and a worker in Twilio's TaskRouter, the system that decides whose app rings ([Glossary](/reference/glossary)); see [How the phone works](/handbook/phone/how-the-phone-works) |

## Edits and deletes

An edit in Zoho reaches our side within seconds, and a product's price change reaches QuickBooks after it. Deleting a product, supplier, technician, territory or agent in Zoho switches it off on our side; nothing is removed, and a deleted product's QuickBooks item goes inactive. A checklist template deleted in Zoho is removed on our side with its questions.

## What does not cross

* A technician's home location stays in Zoho.
* A territory's map area lives only on our side.

## Related

* [Add a product](/handbook/catalog-and-staff/add-a-product)
* [Add a supplier and its branches](/handbook/catalog-and-staff/add-a-supplier)
* [Who is the source of truth](/systems/who-is-the-source-of-truth)
