Chat To ClientsHelp Center

How can we help?

Knowledge baseWorkflowsCRM Workflow Actions

Workflow Action – Find Object Record / Find Company

TABLE OF CONTENTS


Overview

The Find Object Record action searches your CRM for a specific custom object record using values from an Inbound Webhook trigger. You map fields from the webhook payload to the object’s fields. If your workflow already started with the same object as the trigger, this step is skipped.


This action is also available in company-based workflows as Find Company, allowing you to locate a company record using webhook values (e.g., companyName, domain).


Action Name


Action Description

Use this action to:

Prerequisite: An Inbound Webhook trigger must exist in the workflow. The action reads values from this trigger’s payload (body, headers).



Action Details




I. Requires Inbound Webhook


II. Filter On (tie-breaker)

Choose how to select one record if multiple match:
Earliest Created Record
Latest Created Record

III. Filters (AND logic)

IV. Outcomes

V. Skip behavior

VI. Best Practices


Examples

Example 1: Find a Pet by Name (webhook → lookup)


Goal: A webhook posts petname = "snowy". Find the Pet object with that name.

Setup

Flow

  1. Inbound Webhook triggers with { "petname": "snowy" }.

  2. Action finds Pet where Pet Name equals snowy.

  3. Record Found: Update Pet status and notify the owner.

  4. Record Not Found: Create a Pet record with name = "snowy" and tag for review.


Example 2: Find a Subscription by External Reference


Goal: Your billing webhook sends subscription_ref. Find the Subscription object.

Setup

Flow

  1. Webhook arrives with subscription_ref.

  2. Action selects the latest active Subscription with that reference.

  3. Record Found: Update plan fields; enqueue renewal emails.

  4. Record Not Found: Create a placeholder Subscription and alert Finance.


Example 3: Find a Company by Domain


Goal: A webhook from a lead-gen form passes companyDomain. Find the Company record with that domain.

Setup

Flow

  1. Inbound Webhook triggers with { "companyDomain": "acme.com" }.

  2. Action finds Company where Domain equals acme.com.

  3. Record Found: Enroll Company in an “Onboarding” workflow.

  4. Record Not Found: Create a new Company record with domain acme.com.

Last updated Mon, 13 Oct, 2025 at 3:31 AM