> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.meetgail.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.meetgail.com/_mcp/server.

# AgencyZoom Get Customer

> Fetches one AgencyZoom customer by id, including their policies.

The Get Customer node pulls one customer's full record out of AgencyZoom by their
id, including the policies on the account. Use it once you know which customer you
want, often from a Search Customers step.

## When to use it

* You have a customer id and want their full details before acting.
* You need a customer's policies, premium, or other record details in the run.
* You searched for a customer and now want the complete record for the match.

## Inputs

| Field    | What it's for                                  | Example |
| -------- | ---------------------------------------------- | ------- |
| Customer | The customer to fetch, identified by their id. | `12345` |

The customer id can be a fixed value or an
[expression](/platform/workflows/core-concepts/expressions/using-expressions-in-nodes) that reads from
an earlier step, such as the first match from a search.

## Outputs

| Field    | What you get back                                                                         |
| -------- | ----------------------------------------------------------------------------------------- |
| Customer | The customer's full record, including their policies, total premium, and contact details. |

## Example

After finding Sarah Chen with a
[Search Customers](/platform/workflows/node-reference/integrations/agencyzoom/agency-zoom-search-customers)
step, a workflow uses Get Customer with her id to pull her full record. A later
step reads her policies to decide which renewal reminder to send.

![The AgencyZoom Get Customer node configuration panel, showing the customer id.](https://fdr-prod-docs-files-public.s3.us-east-1.amazonaws.com/gail.docs.buildwithfern.com/7d731dbf4460ca513ad06c0c6744adb50945f383679f8dad2718c4881c5b018a/docs/pages/platform/workflows/assets/agencyzoom-get-customer.png?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIA6KXJSKKNFOCF7G4B%2F20260823%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260823T233107Z&X-Amz-Expires=604800&X-Amz-Signature=d9b22c33728ef14d9104b052b1e39db60658c3a7f1d92d9b32fbc01633e78e67&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject)

This node never stops the run on its own, even when the lookup fails. It always
hands back a result, so follow it with a
[Check](/platform/workflows/node-reference/logic-and-flow/check) or
[Conditional](/platform/workflows/node-reference/logic-and-flow/conditional) to handle the
case where the customer was not found.

## Related nodes

#### [Search Customers](/platform/workflows/node-reference/integrations/agencyzoom/agency-zoom-search-customers)

Find the customer id to fetch.

#### [Add Customer Note](/platform/workflows/node-reference/integrations/agencyzoom/agency-zoom-add-customer-note)

Add a note to the customer.

#### [Add Contact](/platform/workflows/node-reference/gail/add-contact)

Bring the customer into Gail as a contact.

#### [Conditional](/platform/workflows/node-reference/logic-and-flow/conditional)

Branch on whether the customer was found.