API Documentation
Brand Flows ¶
Overview
A BrandFlow is a series of touch point templates that can help the agents drive deeper engagement with their contacts and make sure the right sales activities are always conducted. It is comprised of a set of BrandFlowStep's that can be either an event or email template.
BrandFlow
A BrandFlow's data model is described in the table below:
Field | Type | association | Description |
---|---|---|---|
id | uuid | Internal identifier of the object | |
created_at | number | ||
updated_at | number | ||
deleted_at | number | ||
created_by | User | User who created this object | |
updated_by | User | User who created this object | |
brand | Brand | The team this object belongs to | |
name | string | Name of the flow | |
description | string | A description of what the flow does | |
steps | BrandFlowStep[] | brand_flow.steps |
Name of the flow |
is_editable | boolean | Whether user can edit the entity |
BrandFlowStep
BrandFlowStep's data model is described in the table below:
Field | Type | association | Description |
---|---|---|---|
id | uuid | Internal identifier of the object | |
created_at | number | ||
updated_at | number | ||
deleted_at | number | ||
created_by | User | brand_flow_step.created_by |
User who created this object |
updated_by | User | brand_flow_step.updated_by |
User who created this object |
title | string | Title of the step | |
description | string | A description of what the step is about | |
order | number | Step’s execution order in the flow | |
event_type | string | A calendar event type, e.g. birthday |
|
wait_for | number | wait time from the actual time of the event trigger | |
time | string | time of the day the action is supposed to be executed | |
BrandEmail | brand_flow_step.email |
Link to an email template | |
event | BrandEvent | brand_flow_step.event |
An event template |
template | Template | brand_flow_step.template |
A raw marketing template |
template_instance | TemplateInstance | brand_flow_step.template_instance |
A rendered template instance from my designs |
is_automated | boolean | Whether the step is automated or not |
Flow
Flow is an instance of a BrandFlow created for a single contact. It is linked to the brand flow by origin
field. Its data model is described in the table below:
Field | Type | association | Description |
---|---|---|---|
id | uuid | Internal identifier of the object | |
created_at | number | ||
updated_at | number | ||
deleted_at | number | ||
created_by | User | flow.created_by |
User who created this object |
updated_by | User | flow.updated_by |
User who created this object |
brand | Brand | flow.brand |
The team this object belongs to |
origin | BrandFlow | flow.origin |
Template this flow was created from |
origin_id | uuid | Template this flow was created from | |
name | string | Name of the flow | |
description | string | A description of what the flow does | |
starts_at | number | Flow’s epoch | |
contact | Contact | flow.contact |
Contact enrolled in this flow |
steps | FlowStep[] | flow.steps |
Array of flow’s steps |
FlowStep
FlowStep's data model is described in the table below:
Field | Type | association | Description |
---|---|---|---|
id | uuid | Internal identifier of the object | |
created_at | number | ||
updated_at | number | ||
deleted_at | number | ||
created_by | User | flow_step.created_by |
User who created this object |
updated_by | User | flow_step.updated_by |
User who created this object |
flow | uuid | Parent flow of the step | |
origin | BrandFlowStep | flow.origin |
Link to the brand flow step |
campaign | EmailCampaign | `flow_step.campaign | Link to an actual email campaign |
crm_task | CrmTask | flow_step.crm_task |
Link to an actual CrmTask object |
Get all brand flows ¶
Get all brand flowsGET/brands/:id/flows
Example URI
GET /brands/:id/flows
URI Parameters
- id
string
(required) Example: 7e399425-ec4b-4d0e-b2dc-0e0a36f48d55- associations
string
(required) Example: brand_flow.steps,brand_flow_step.event,brand_flow_step.email
Response
200
Body
{
"code": "OK",
"data": [
{
"id": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Consistent Home Seller Outreach",
"description": "Stay connected with potential sellers through timely and personalized follow-up emails.",
"steps": [
{
"id": "2e10e1db-a9cf-45ed-875d-07e499d0af17",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"is_automated": true,
"order": 0,
"title": "Thank You for Considering Me!",
"description": "Express gratitude and introduce your unique value.",
"event_type": "last_step_date",
"wait_for": {
"days": 1
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "c9010de7-70bb-4b8b-970b-35903c66dfeb",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Thank You for Considering Me!",
"goal": "",
"subject": "Thank You for Considering Me!",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Thank you for considering me to list your home—it’s truly an honor! I want to share a few things that set me apart as a real estate professional:</p><ol><li>I’m always accessible and responsive—feel free to test me!</li><li>I provide regular updates on your home’s marketing progress to keep you informed every step of the way.</li><li>I’m fully committed to going above and beyond to sell your home efficiently and effectively.</li></ol><p>I’d love the opportunity to connect and discuss your goals. Let’s schedule a time to chat and get started!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nThank you for considering me to list your home—it’s truly an honor! I want to\nshare a few things that set me apart as a real estate professional:\n\n 1. I’m always accessible and responsive—feel free to test me!\n 2. I provide regular updates on your home’s marketing progress to keep you\n informed every step of the way.\n 3. I’m fully committed to going above and beyond to sell your home efficiently\n and effectively.\n\nI’d love the opportunity to connect and discuss your goals. Let’s schedule a\ntime to chat and get started!"
},
"type": "brand_flow_step"
},
{
"id": "705e081d-ba5d-45ae-b348-4722296070ac",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"is_automated": true,
"order": 1,
"title": "Can I Share Some Expert Selling Tips?",
"description": "Offer valuable insights to build trust and engagement.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "caceb1fc-c750-40e1-b678-5c3a93040d35",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Can I Share Some Expert Selling Tips?",
"goal": "",
"subject": "Can I Share Some Expert Selling Tips?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>I’d love the chance to share some of the best advice I’ve learned about successfully selling homes—it could make a big difference in your experience.</p><p>Are you available this afternoon? I have some time open and would be happy to connect. Let me know what works for you!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nI’d love the chance to share some of the best advice I’ve learned about\nsuccessfully selling homes—it could make a big difference in your experience.\n\nAre you available this afternoon? I have some time open and would be happy to\nconnect. Let me know what works for you!"
},
"type": "brand_flow_step"
},
{
"id": "9bd912ff-e378-4ec8-81d7-e349dca93f7d",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"is_automated": true,
"order": 2,
"title": "Let’s Discuss Your Home Selling Timeline",
"description": "Check in and align with the seller's goals.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "56c578ac-bc93-4245-b656-ada0416e5a66",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Let’s Discuss Your Home Selling Timeline",
"goal": "",
"subject": "Let’s Discuss Your Home Selling Timeline",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>It’s been a busy week, but I wanted to take a moment to check in with you. My goal is to ensure you get the best price for your home while aligning with your preferred timeline.</p><p>What does your ideal timeline look like? Are you hoping to move quickly, or do you have some flexibility?</p><p>Let me know—I’m here to help you navigate the process and make it as seamless as possible!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nIt’s been a busy week, but I wanted to take a moment to check in with you. My\ngoal is to ensure you get the best price for your home while aligning with your\npreferred timeline.\n\nWhat does your ideal timeline look like? Are you hoping to move quickly, or do\nyou have some flexibility?\n\nLet me know—I’m here to help you navigate the process and make it as seamless as\npossible!"
},
"type": "brand_flow_step"
},
{
"id": "c98d3f4b-4067-4971-8744-13d38e326e9c",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"is_automated": true,
"order": 3,
"title": "Highlighting Your Home's Best Feature",
"description": "Help sellers identify key selling points.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "650b2242-ef64-49f9-bee4-4eae5b2267d2",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Highlighting Your Home's Best Feature",
"goal": "",
"subject": "Highlighting Your Home's Best Feature",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>When selling your home, it’s helpful to think about what made you fall in love with it in the first place. Chances are, those same features will attract the right buyer—someone with similar tastes and values.</p><p>So, what do you think is your home’s best feature? Is it a spacious kitchen, a cozy living room, or a beautiful backyard?</p><p>Let’s connect to discuss how we can highlight those qualities and make your home stand out to the perfect buyer!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nWhen selling your home, it’s helpful to think about what made you fall in love\nwith it in the first place. Chances are, those same features will attract the\nright buyer—someone with similar tastes and values.\n\nSo, what do you think is your home’s best feature? Is it a spacious kitchen, a\ncozy living room, or a beautiful backyard?\n\nLet’s connect to discuss how we can highlight those qualities and make your home\nstand out to the perfect buyer!"
},
"type": "brand_flow_step"
},
{
"id": "b2a4c961-59dc-4de1-93df-031f8a1cc95a",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"is_automated": true,
"order": 4,
"title": "Ready When You Are",
"description": "Reassure sellers of your ongoing support.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "662e3a20-eb6b-4b4d-82e0-9c53f8ee695c",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Ready When You Are",
"goal": "",
"subject": "Ready When You Are",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>I noticed we haven’t had the chance to connect in the past couple of weeks, but I want you to know that I’m here, ready, and excited to help whenever you’re ready to move forward.</p><p>One thing about me—I don’t give up easily! I’m committed to supporting you every step of the way, but I also understand that timing is everything. Feel free to let me know when the time is right for you.</p><p>Looking forward to hearing from you!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nI noticed we haven’t had the chance to connect in the past couple of weeks, but\nI want you to know that I’m here, ready, and excited to help whenever you’re\nready to move forward.\n\nOne thing about me—I don’t give up easily! I’m committed to supporting you every\nstep of the way, but I also understand that timing is everything. Feel free to\nlet me know when the time is right for you.\n\nLooking forward to hearing from you!"
},
"type": "brand_flow_step"
},
{
"id": "c9846ebd-b10c-42f8-849b-20e83bf65d41",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"is_automated": true,
"order": 5,
"title": "Are You Still Thinking About Selling?",
"description": "Reignite interest and offer support for next steps.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "3b2d83fe-10f1-4da3-aa47-bd4b678c450c",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Are You Still Thinking About Selling?",
"goal": "",
"subject": "Are You Still Thinking About Selling?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Are you still considering selling your home this year?</p><p>If so, I’d love to connect and help you plan the best next steps to get started. Whether it’s setting the right price, preparing your home for the market, or exploring your selling options, I’m here to guide you through the process.</p><p>Let me know when you’re ready to chat—I’d be happy to help!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nAre you still considering selling your home this year?\n\nIf so, I’d love to connect and help you plan the best next steps to get started.\nWhether it’s setting the right price, preparing your home for the market, or\nexploring your selling options, I’m here to guide you through the process.\n\nLet me know when you’re ready to chat—I’d be happy to help!"
},
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": true
},
{
"id": "7805794d-535f-4ebd-9ac5-5e5fdde013c1",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Personalized Home Buying Path",
"description": "Comprehensive guidance for prospective buyers.",
"steps": [
{
"id": "7e2a5104-a2c0-4b1c-a219-1c35987c252a",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "7805794d-535f-4ebd-9ac5-5e5fdde013c1",
"is_automated": true,
"order": 0,
"title": "Begin Your Home Buying Journey",
"description": "Introduce the home buying process.",
"event_type": "last_step_date",
"wait_for": {
"days": 1
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "b67e8f9e-93be-4680-8ac0-e0efd0dff40b",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Begin Your Home Buying Journey with Expert Guidance",
"goal": "",
"subject": "Begin Your Home Buying Journey with Expert Guidance",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Embarking on the journey to homeownership involves several key steps: selecting a dedicated agent, searching for properties, making offers, securing financing, and finalizing the purchase.</p><p>As your agent, I am committed to making this process straightforward and seamless for you and will be your dedicated partner from start to finish.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nEmbarking on the journey to homeownership involves several key steps: selecting\na dedicated agent, searching for properties, making offers, securing financing,\nand finalizing the purchase.\n\nAs your agent, I am committed to making this process straightforward and\nseamless for you and will be your dedicated partner from start to finish."
},
"type": "brand_flow_step"
},
{
"id": "0339a72c-cc6e-4f00-9a7f-eba9826491d8",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "7805794d-535f-4ebd-9ac5-5e5fdde013c1",
"is_automated": true,
"order": 1,
"title": "Prepare for Your Home Buying Journey",
"description": "Help clients prepare for a successful home buying experience.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "5566b7c4-d7e1-480a-b451-a059436a0fb5",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Prepare for Your Home Buying Journey",
"goal": "",
"subject": "Prepare for Your Home Buying Journey",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Embarking on the path to homeownership is a significant milestone, and being well-prepared is essential for a successful experience.</p><p>As your dedicated real estate agent, I am committed to understanding your unique needs, expectations, and goals. We’ll discuss your desired timeline, specific requirements, and address any questions you may have about the home buying process.</p><p>With a focus on integrity and personalized service, I aim to make your home buying journey smooth and rewarding.</p><p>To schedule your no-obligation virtual or in-person consultation, please contact me today.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nEmbarking on the path to homeownership is a significant milestone, and being\nwell-prepared is essential for a successful experience.\n\nAs your dedicated real estate agent, I am committed to understanding your unique\nneeds, expectations, and goals. We’ll discuss your desired timeline, specific\nrequirements, and address any questions you may have about the home buying\nprocess.\n\nWith a focus on integrity and personalized service, I aim to make your home\nbuying journey smooth and rewarding.\n\nTo schedule your no-obligation virtual or in-person consultation, please contact\nme today."
},
"type": "brand_flow_step"
},
{
"id": "cc58a158-ff30-45a9-8243-12decc33e5a9",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "7805794d-535f-4ebd-9ac5-5e5fdde013c1",
"is_automated": true,
"order": 2,
"title": "Your First Step to Home Buying Success",
"description": "Highlight the importance of mortgage pre-approval.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "8088edd0-9c35-469a-8452-ae90659acd3e",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Your First Step to Home Buying Success",
"goal": "",
"subject": "Your First Step to Home Buying Success",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>In my experience, many homebuyers, especially first-timers, have faced disappointment after finding their dream home, only to discover they didn’t qualify for the necessary mortgage.</p><p>To prevent such situations, I recommend beginning with the mortgage pre-approval process. This step clarifies your budget, ensuring we focus on homes within your financial reach and streamlining your home search.</p><p>I can connect you with trusted mortgage professionals who can assist you in obtaining a pre-approval promptly.</p><p>I'm here to help you get started. Let's set up a call to discuss this further.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nIn my experience, many homebuyers, especially first-timers, have faced\ndisappointment after finding their dream home, only to discover they didn’t\nqualify for the necessary mortgage.\n\nTo prevent such situations, I recommend beginning with the mortgage pre-approval\nprocess. This step clarifies your budget, ensuring we focus on homes within your\nfinancial reach and streamlining your home search.\n\nI can connect you with trusted mortgage professionals who can assist you in\nobtaining a pre-approval promptly.\n\nI'm here to help you get started. Let's set up a call to discuss this further."
},
"type": "brand_flow_step"
},
{
"id": "13800dcd-79f9-476f-a0d4-b90cb2a65371",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "7805794d-535f-4ebd-9ac5-5e5fdde013c1",
"is_automated": true,
"order": 3,
"title": "Let's Discover Your Ideal Home",
"description": "Guide clients in finding homes that match their criteria.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "7ed557c3-93c8-4deb-866b-c9921f6c4374",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Let's Discover Your Ideal Home",
"goal": "",
"subject": "Let's Discover Your Ideal Home",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Finding a home that perfectly matches your needs can be a complex endeavor. As your dedicated real estate agent, I am here to simplify the process and guide you every step of the way.</p><p>With access to the latest market trends and real-time property information, I can provide you with up-to-date insights on homes that meet your criteria.</p><p>I will be your trusted advisor throughout the entire journey—from the initial search to navigating the closing process—ensuring a seamless and successful experience.</p><p>Contact me today to schedule a virtual or in-person appointment and take the first step toward finding your new home.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nFinding a home that perfectly matches your needs can be a complex endeavor. As\nyour dedicated real estate agent, I am here to simplify the process and guide\nyou every step of the way.\n\nWith access to the latest market trends and real-time property information, I\ncan provide you with up-to-date insights on homes that meet your criteria.\n\nI will be your trusted advisor throughout the entire journey—from the initial\nsearch to navigating the closing process—ensuring a seamless and successful\nexperience.\n\nContact me today to schedule a virtual or in-person appointment and take the\nfirst step toward finding your new home."
},
"type": "brand_flow_step"
},
{
"id": "7c5bfba2-3951-40d7-bbc4-1c033aa6fe23",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "7805794d-535f-4ebd-9ac5-5e5fdde013c1",
"is_automated": true,
"order": 4,
"title": "Understand Your Buying Power",
"description": "Help clients determine their budget and financial readiness.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "69487838-7e55-4eb6-9182-7ea130ca0ade",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Understand Your Buying Power",
"goal": "",
"subject": "Understand Your Buying Power",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>If you're searching for a home, one of the first steps is determining how much home fits comfortably within your budget.</p><p>Setting expectations too high can lead to financial strain, leaving little room for other important expenses and maintaining a good quality of life.</p><p>As your trusted real estate advisor, I’ll help you define a reasonable price range based on your income, expenses, and overall budget. Together, we’ll ensure your home fits your lifestyle—not just financially, but holistically.</p><p>I want you to love your new home while still enjoying the life it supports.</p><p>Let’s connect today to explore what price range works best for you.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nIf you're searching for a home, one of the first steps is determining how much\nhome fits comfortably within your budget.\n\nSetting expectations too high can lead to financial strain, leaving little room\nfor other important expenses and maintaining a good quality of life.\n\nAs your trusted real estate advisor, I’ll help you define a reasonable price\nrange based on your income, expenses, and overall budget. Together, we’ll ensure\nyour home fits your lifestyle—not just financially, but holistically.\n\nI want you to love your new home while still enjoying the life it supports.\n\nLet’s connect today to explore what price range works best for you."
},
"type": "brand_flow_step"
},
{
"id": "3b0c1299-cbdf-41d1-ab70-72372e0c7fe7",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "7805794d-535f-4ebd-9ac5-5e5fdde013c1",
"is_automated": true,
"order": 5,
"title": "Let’s Find Your Perfect Home",
"description": "Assist clients in narrowing down their home search.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "19d9de94-d4fe-4435-8ad0-17ffb67721f7",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Let’s Find Your Perfect Home",
"goal": "",
"subject": "Let’s Find Your Perfect Home",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>The perfect home for you is out there, and I’m here to help you find it.</p><p>While it’s not as simple as point and click, having an agent who is dedicated to your needs makes all the difference. I’m committed to doing the hard work, ensuring we find a home that truly fits your vision—not just settling for the sake of convenience.</p><p>With thousands of homes on the market, I’ll help you narrow down your options based on size, price, neighborhood, amenities, and more. Together, we’ll focus on the properties that meet your needs and align with your goals.</p><p>Let’s discuss your home search and get started on finding the perfect fit. I look forward to connecting at your convenience.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nThe perfect home for you is out there, and I’m here to help you find it.\n\nWhile it’s not as simple as point and click, having an agent who is dedicated to\nyour needs makes all the difference. I’m committed to doing the hard work,\nensuring we find a home that truly fits your vision—not just settling for the\nsake of convenience.\n\nWith thousands of homes on the market, I’ll help you narrow down your options\nbased on size, price, neighborhood, amenities, and more. Together, we’ll focus\non the properties that meet your needs and align with your goals.\n\nLet’s discuss your home search and get started on finding the perfect fit. I\nlook forward to connecting at your convenience."
},
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": true
},
{
"id": "0f266f89-b2fa-47f3-85b5-b16f27ee2359",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Staying Connected with Past Clients",
"description": "Build and maintain strong relationships with past clients through thoughtful follow-up and personalized communication.",
"steps": [
{
"id": "5aeb2784-2ee6-4343-8b1f-671ad6566007",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "0f266f89-b2fa-47f3-85b5-b16f27ee2359",
"is_automated": true,
"order": 0,
"title": "Checking In",
"description": "Reconnect with past clients.",
"event_type": "last_step_date",
"wait_for": {},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "8240114b-84c7-4261-90d0-47017f535513",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Checking In",
"goal": "",
"subject": "Checking In",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>I hope this message finds you well! How have you been since we last worked together? I trust that your new home has been everything you hoped it would be and more.</p><p>Building lasting relationships with my clients is incredibly important to me. Even if some time has passed since we’ve been in touch, I want you to know that I’m always here to assist with any real estate-related questions or needs you may have.</p><p>Feel free to reach out anytime—I’d love to hear how you’re doing!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nI hope this message finds you well! How have you been since we last worked\ntogether? I trust that your new home has been everything you hoped it would be\nand more.\n\nBuilding lasting relationships with my clients is incredibly important to me.\nEven if some time has passed since we’ve been in touch, I want you to know that\nI’m always here to assist with any real estate-related questions or needs you\nmay have.\n\nFeel free to reach out anytime—I’d love to hear how you’re doing!"
},
"type": "brand_flow_step"
},
{
"id": "0f5b5c13-4dc0-40c0-9854-33f1ac2f12c8",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "0f266f89-b2fa-47f3-85b5-b16f27ee2359",
"is_automated": true,
"order": 1,
"title": "Stay Informed on Market Trends",
"description": "Share updates on real estate trends.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "3747c1fa-8f9a-42fd-9359-7991d975d2b7",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Stay Informed on Market Trends",
"goal": "",
"subject": "Stay Informed on Market Trends",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>I hope you’re doing well! Since we last worked together, the real estate market has evolved, offering new opportunities for both buyers and sellers.</p><p>Home prices continue to shift, presenting unique advantages depending on your goals. Whether you’re considering buying, investing, or simply staying informed, understanding the current trends can help you make the most of the market.</p><p>If you’d like to discuss how these changes might impact you, feel free to reach out—I’m always here to help!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nI hope you’re doing well! Since we last worked together, the real estate market\nhas evolved, offering new opportunities for both buyers and sellers.\n\nHome prices continue to shift, presenting unique advantages depending on your\ngoals. Whether you’re considering buying, investing, or simply staying informed,\nunderstanding the current trends can help you make the most of the market.\n\nIf you’d like to discuss how these changes might impact you, feel free to reach\nout—I’m always here to help!"
},
"type": "brand_flow_step"
},
{
"id": "d144f82a-6e67-40f8-a874-cf6521ac3441",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "0f266f89-b2fa-47f3-85b5-b16f27ee2359",
"is_automated": true,
"order": 2,
"title": "Transform Your Home into Your Dream Space",
"description": "Inspire home improvement ideas.",
"event_type": "last_step_date",
"wait_for": {
"days": 14
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "7f5382aa-6a53-4efa-8a79-b886062b29fb",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Transform Your Home into Your Dream Space",
"goal": "",
"subject": "Transform Your Home into Your Dream Space",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Settling into a new home often comes with exciting projects to make the space truly your own. From renovations to smaller updates, turning your house into your unique sanctuary is a rewarding process.</p><p>If you’re in need of trusted professionals to assist with home improvement, I’d be happy to help! Over the years, I’ve built a strong network of reliable experts in our community who can handle everything from repairs to redesigns.</p><p>Feel free to reach out if you’d like a referral or advice—I’m here to support you every step of the way!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nSettling into a new home often comes with exciting projects to make the space\ntruly your own. From renovations to smaller updates, turning your house into\nyour unique sanctuary is a rewarding process.\n\nIf you’re in need of trusted professionals to assist with home improvement, I’d\nbe happy to help! Over the years, I’ve built a strong network of reliable\nexperts in our community who can handle everything from repairs to redesigns.\n\nFeel free to reach out if you’d like a referral or advice—I’m here to support\nyou every step of the way!"
},
"type": "brand_flow_step"
},
{
"id": "e65d8ede-68c6-448b-a2e8-c6205b91453a",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "0f266f89-b2fa-47f3-85b5-b16f27ee2359",
"is_automated": true,
"order": 3,
"title": "Is Real Estate Investment Right for You?",
"description": "Explore real estate investment opportunities.",
"event_type": "last_step_date",
"wait_for": {
"days": 21
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "3ad48981-90e8-47cf-a2b3-b2bf6e986946",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Is Real Estate Investment Right for You?",
"goal": "",
"subject": "Is Real Estate Investment Right for You?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Have you ever thought about investing in real estate to generate income and build long-term wealth? The current market offers promising opportunities for investors, with properties that could provide both steady cash flow and appreciation potential over time.</p><p>Whether you’re exploring options for your first investment property or adding to an existing portfolio, now may be a great time to take the next step.</p><p>If this sounds interesting, let’s connect to discuss your goals and explore opportunities that align with your vision!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nHave you ever thought about investing in real estate to generate income and\nbuild long-term wealth? The current market offers promising opportunities for\ninvestors, with properties that could provide both steady cash flow and\nappreciation potential over time.\n\nWhether you’re exploring options for your first investment property or adding to\nan existing portfolio, now may be a great time to take the next step.\n\nIf this sounds interesting, let’s connect to discuss your goals and explore\nopportunities that align with your vision!"
},
"type": "brand_flow_step"
},
{
"id": "aa69e47b-0eff-455a-aaa0-521c34f60e61",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "0f266f89-b2fa-47f3-85b5-b16f27ee2359",
"is_automated": true,
"order": 4,
"title": "Here to Help—Now and in the Future",
"description": "Reaffirm your ongoing support.",
"event_type": "last_step_date",
"wait_for": {
"days": 28
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "68e63166-4c0d-48fc-a4f1-33f6550ae5af",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Here to Help—Now and in the Future",
"goal": "",
"subject": "Here to Help—Now and in the Future",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Having worked together before, you know how committed I am to helping my clients achieve the best possible outcomes. Over the years, I’ve been fortunate to build a network of connections through referrals from satisfied clients like you—it’s something I’m truly grateful for.</p><p>Even if you don’t have any real estate needs at the moment, I’d still love to hear from you and catch up! Feel free to reach out anytime—I’m always here to help or simply reconnect.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nHaving worked together before, you know how committed I am to helping my clients\nachieve the best possible outcomes. Over the years, I’ve been fortunate to build\na network of connections through referrals from satisfied clients like you—it’s\nsomething I’m truly grateful for.\n\nEven if you don’t have any real estate needs at the moment, I’d still love to\nhear from you and catch up! Feel free to reach out anytime—I’m always here to\nhelp or simply reconnect."
},
"type": "brand_flow_step"
},
{
"id": "5acc4dd8-a1b2-4c23-b6b5-f31968490c02",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "0f266f89-b2fa-47f3-85b5-b16f27ee2359",
"is_automated": true,
"order": 5,
"title": "Considering Your Next Move?",
"description": "Encourage discussions on future plans.",
"event_type": "last_step_date",
"wait_for": {
"days": 35
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "0f550b97-6543-4987-a605-fb025d543265",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Considering Your Next Move?",
"goal": "",
"subject": "Considering Your Next Move?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Whether you’re thinking about your next move, exploring the potential of an investment property, or simply curious about current market opportunities, I’m here to help.</p><p>I deeply value the relationship we built when we worked together to (purchase/sell) your home, and I’d love the chance to collaborate again in the future. If there’s anything you’d like to discuss, don’t hesitate to reach out—I’m always here for you.</p><p>Looking forward to connecting!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nWhether you’re thinking about your next move, exploring the potential of an\ninvestment property, or simply curious about current market opportunities, I’m\nhere to help.\n\nI deeply value the relationship we built when we worked together to\n(purchase/sell) your home, and I’d love the chance to collaborate again in the\nfuture. If there’s anything you’d like to discuss, don’t hesitate to reach\nout—I’m always here for you.\n\nLooking forward to connecting!"
},
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": true
},
{
"id": "f25f2ef9-9ff9-4cfe-9d97-1c8d59d491dc",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Finding Your Perfect-Fit Home",
"description": "Help clients navigate important decisions to match their home with their lifestyle.",
"steps": [
{
"id": "eda36b9f-466c-450c-b53b-d2e97c5c7045",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "f25f2ef9-9ff9-4cfe-9d97-1c8d59d491dc",
"is_automated": true,
"order": 0,
"title": "Time to Right-Size Your Home",
"description": "Help clients start their right-sizing journey.",
"event_type": "last_step_date",
"wait_for": {
"days": 1
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "0932dee6-e4c7-4b62-be8c-47fcdf1d675e",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Finding Your Perfect Fit: Time to Right-Size Your Home",
"goal": "",
"subject": "Finding Your Perfect Fit: Time to Right-Size Your Home",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Your home should match your lifestyle, not the other way around.</p><p>For some, this means downsizing to reduce expenses and simplify life. For others, it’s all about upsizing—creating space for a growing family or bringing loved ones together in a multigenerational home.</p><p>Whatever your needs, finding the \"right size\" is about creating a home that supports the way you live.</p><p>Need a dedicated home office? A nursery? Or maybe you’re ready for something cozier and easier to maintain? Let’s explore the perfect option for you.</p><p>Upsizing, downsizing, or somewhere in between, I’m here to help you navigate the process.</p><p>Reach out today, and let’s start your right-sizing journey!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nYour home should match your lifestyle, not the other way around.\n\nFor some, this means downsizing to reduce expenses and simplify life. For\nothers, it’s all about upsizing—creating space for a growing family or bringing\nloved ones together in a multigenerational home.\n\nWhatever your needs, finding the \"right size\" is about creating a home that\nsupports the way you live.\n\nNeed a dedicated home office? A nursery? Or maybe you’re ready for something\ncozier and easier to maintain? Let’s explore the perfect option for you.\n\nUpsizing, downsizing, or somewhere in between, I’m here to help you navigate the\nprocess.\n\nReach out today, and let’s start your right-sizing journey!"
},
"type": "brand_flow_step"
},
{
"id": "23be55b5-eed2-4d75-bf13-abcdd4f329ef",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "f25f2ef9-9ff9-4cfe-9d97-1c8d59d491dc",
"is_automated": true,
"order": 1,
"title": "Your Home Search Made Simple",
"description": "Make the home search process smooth and virtual.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "fc6c72cf-da94-4ecf-84c8-fc33dc7ff3d8",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Your Home Search Made Simple—Virtually!",
"goal": "",
"subject": "Your Home Search Made Simple—Virtually!",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Thinking about buying a home?</p><p>These days, most of the process can be done from the comfort of your home.</p><p>I’ll help you find properties that match your needs and arrange virtual or in-person tours of your top picks. With mortgage rates still favorable, now is an excellent time to buy—and much of the paperwork, from mortgage applications to closing documents, can be handled online.</p><p>Whether you're ready to start today or just planning for the future, I’m here to make the process smooth and stress-free.</p><p>Let’s connect and get started!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nThinking about buying a home?\n\nThese days, most of the process can be done from the comfort of your home.\n\nI’ll help you find properties that match your needs and arrange virtual or\nin-person tours of your top picks. With mortgage rates still favorable, now is\nan excellent time to buy—and much of the paperwork, from mortgage applications\nto closing documents, can be handled online.\n\nWhether you're ready to start today or just planning for the future, I’m here to\nmake the process smooth and stress-free.\n\nLet’s connect and get started!"
},
"type": "brand_flow_step"
},
{
"id": "4c2aef44-46ea-4868-9b6e-42cab16b7152",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "f25f2ef9-9ff9-4cfe-9d97-1c8d59d491dc",
"is_automated": true,
"order": 2,
"title": "Find the Perfect Home Office",
"description": "Focus on finding homes with ideal office spaces.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "61f2ce8a-a387-4f9a-8728-1ccae7db1ad4",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Find the Perfect Home Office for Your Lifestyle",
"goal": "",
"subject": "Find the Perfect Home Office for Your Lifestyle",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Working from home has become the new normal, and having the right office space can make all the difference.</p><p>I’m here to help you find a home that truly fits your needs—no cramped corners or makeshift setups. While some listings advertise a \"home office,\" they often fall short of expectations.</p><p>I’ll ensure your search focuses on homes with well-lit, quiet spaces that can comfortably accommodate your desk, printer, and maybe even a cozy chair for breaks.</p><p>Ready to start your search or just have questions? Let’s connect and find your ideal space together.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nWorking from home has become the new normal, and having the right office space\ncan make all the difference.\n\nI’m here to help you find a home that truly fits your needs—no cramped corners\nor makeshift setups. While some listings advertise a \"home office,\" they often\nfall short of expectations.\n\nI’ll ensure your search focuses on homes with well-lit, quiet spaces that can\ncomfortably accommodate your desk, printer, and maybe even a cozy chair for\nbreaks.\n\nReady to start your search or just have questions? Let’s connect and find your\nideal space together."
},
"type": "brand_flow_step"
},
{
"id": "a5e4a7e5-b5c3-40c3-bfbf-0855b674705b",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "f25f2ef9-9ff9-4cfe-9d97-1c8d59d491dc",
"is_automated": true,
"order": 3,
"title": "Make Informed Mortgage Choices",
"description": "Guide clients through mortgage decisions.",
"event_type": "last_step_date",
"wait_for": {
"days": 14
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "3d996121-678b-4e86-96e3-84184e2a511c",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Make Informed Choices About Your Mortgage",
"goal": "",
"subject": "Make Informed Choices About Your Mortgage",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Thinking about buying your first home or upgrading to a new one? Here’s the key takeaway: interest rates remain near historic lows, making now a great time to act.</p><p>As your real estate partner, I’ll guide you every step of the way. Here’s what I can help with:</p><ul><li><strong>Finding Your Budget Sweet Spot:</strong> I’ll help you determine a realistic price range so you can focus on homes that truly fit your financial situation.</li><li><strong>Navigating Pre-Approval:</strong> Getting pre-approved is essential, and I’ll make sure the process is smooth and stress-free so you can shop with confidence.</li><li><strong>Understanding Mortgage Options:</strong> A 15-year mortgage helps you build equity faster but comes with higher monthly payments. A 30-year mortgage offers lower payments spread over time. Adjustable-rate mortgages (ARMs) start low but increase over time.</li></ul><p>Let’s connect and discuss your options today!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nThinking about buying your first home or upgrading to a new one? Here’s the key\ntakeaway: interest rates remain near historic lows, making now a great time to\nact.\n\nAs your real estate partner, I’ll guide you every step of the way. Here’s what I\ncan help with:\n\n * Finding Your Budget Sweet Spot: I’ll help you determine a realistic price\n range so you can focus on homes that truly fit your financial situation.\n * Navigating Pre-Approval: Getting pre-approved is essential, and I’ll make\n sure the process is smooth and stress-free so you can shop with confidence.\n * Understanding Mortgage Options: A 15-year mortgage helps you build equity\n faster but comes with higher monthly payments. A 30-year mortgage offers\n lower payments spread over time. Adjustable-rate mortgages (ARMs) start low\n but increase over time.\n\nLet’s connect and discuss your options today!"
},
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": true
},
{
"id": "ddac3c94-90d7-46ca-b553-53b8eef48e06",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Simplifying Your Home Selling Journey",
"description": "Provide expert guidance and personalized support to sellers throughout the home-selling process.",
"steps": [
{
"id": "962cc6f9-d060-4e8d-aaa8-9542b7caa4d7",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "ddac3c94-90d7-46ca-b553-53b8eef48e06",
"is_automated": true,
"order": 0,
"title": "Thinking About Selling Your Home?",
"description": "Engage sellers by discussing the benefits of selling their home now.",
"event_type": "last_step_date",
"wait_for": {
"days": 1
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "be8a8f88-82f3-4383-918c-7034da84db17",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Thinking About Selling Your Home?",
"goal": "",
"subject": "Thinking About Selling Your Home?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Are you wondering about the value of your home and whether now is the right time to sell? Deciding to sell is a significant decision, and having the right information can help you make a confident choice.</p><p>A well-priced home can attract serious buyers and sell quickly, often at an excellent price. If you’re curious about your home’s market value or want insights into the selling process, I’d be happy to assist.</p><p>Let’s connect to discuss your options and explore how we can make the most of today’s market!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nAre you wondering about the value of your home and whether now is the right time\nto sell? Deciding to sell is a significant decision, and having the right\ninformation can help you make a confident choice.\n\nA well-priced home can attract serious buyers and sell quickly, often at an\nexcellent price. If you’re curious about your home’s market value or want\ninsights into the selling process, I’d be happy to assist.\n\nLet’s connect to discuss your options and explore how we can make the most of\ntoday’s market!"
},
"type": "brand_flow_step"
},
{
"id": "80696b3f-595c-491b-87dc-9c6960f362ee",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "ddac3c94-90d7-46ca-b553-53b8eef48e06",
"is_automated": true,
"order": 1,
"title": "Let’s Find the Right Price for Your Home",
"description": "Highlight the importance of pricing a home correctly.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "17b35ada-9cbf-41fe-b5a2-3f6f6731bb15",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Let’s Find the Right Price for Your Home",
"goal": "",
"subject": "Let’s Find the Right Price for Your Home",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>To sell your home successfully, it’s crucial to price it appropriately and market it to the right audience. That’s where my expertise comes in.</p><p>I use tools and strategies to identify the most likely buyers for your home and target the right areas to maximize visibility. By understanding local trends and buyer behavior, I’ll ensure your property is positioned to attract serious interest.</p><p>Let’s connect to discuss how I can help price and market your home effectively for a successful sale!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nTo sell your home successfully, it’s crucial to price it appropriately and\nmarket it to the right audience. That’s where my expertise comes in.\n\nI use tools and strategies to identify the most likely buyers for your home and\ntarget the right areas to maximize visibility. By understanding local trends and\nbuyer behavior, I’ll ensure your property is positioned to attract serious\ninterest.\n\nLet’s connect to discuss how I can help price and market your home effectively\nfor a successful sale!"
},
"type": "brand_flow_step"
},
{
"id": "a3c48b11-27fe-4d8f-b3be-6f255ecab460",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "ddac3c94-90d7-46ca-b553-53b8eef48e06",
"is_automated": true,
"order": 2,
"title": "Simplify Your Home Selling Experience",
"description": "Provide tips to make the selling process easier.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "1e5dd681-d35a-4dee-8f25-2fef67b0ade9",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Simplify Your Home Selling Experience",
"goal": "",
"subject": "Simplify Your Home Selling Experience",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Selling a home can feel overwhelming, but choosing the right real estate professional can make all the difference.</p><p>If you decide to work with me, I’ll guide you through every step of the process, helping you:</p><ul><li>Set the right price to attract serious buyers.</li><li>Market your home effectively to maximize visibility.</li><li>Negotiate the best terms for a successful sale.</li></ul><p>Let’s connect to discuss your goals and how I can make selling your home a smooth and rewarding experience!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nSelling a home can feel overwhelming, but choosing the right real estate\nprofessional can make all the difference.\n\nIf you decide to work with me, I’ll guide you through every step of the process,\nhelping you:\n\n * Set the right price to attract serious buyers.\n * Market your home effectively to maximize visibility.\n * Negotiate the best terms for a successful sale.\n\nLet’s connect to discuss your goals and how I can make selling your home a\nsmooth and rewarding experience!"
},
"type": "brand_flow_step"
},
{
"id": "2a45a194-2586-47b4-91f0-eba8a3a8ae07",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "ddac3c94-90d7-46ca-b553-53b8eef48e06",
"is_automated": true,
"order": 3,
"title": "Insights on What Buyers Want",
"description": "Share insights into current buyer trends and preferences.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "d481837e-9527-4473-ba76-8d1496aee477",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Insights on What Buyers Want",
"goal": "",
"subject": "Insights on What Buyers Want",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>When you’re ready to sell, partnering with a local expert can help you determine the right price for your home.</p><p>I’d be happy to provide you with a report detailing recent sale prices of comparable homes in your area and discuss what buyers are currently looking for.</p><p>Pricing your home correctly is key—too high, and it may sit on the market; too low, and you might leave value on the table. My goal is to help you find the right balance to attract buyers while maximizing your return.</p><p>Let’s connect to explore your options and create a strategy for success!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nWhen you’re ready to sell, partnering with a local expert can help you determine\nthe right price for your home.\n\nI’d be happy to provide you with a report detailing recent sale prices of\ncomparable homes in your area and discuss what buyers are currently looking for.\n\nPricing your home correctly is key—too high, and it may sit on the market; too\nlow, and you might leave value on the table. My goal is to help you find the\nright balance to attract buyers while maximizing your return.\n\nLet’s connect to explore your options and create a strategy for success!"
},
"type": "brand_flow_step"
},
{
"id": "0c9b288e-706f-45f1-8c86-ed581be2d885",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "ddac3c94-90d7-46ca-b553-53b8eef48e06",
"is_automated": true,
"order": 4,
"title": "Getting Your Home Market-Ready",
"description": "Offer advice on preparing the home for sale.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "5b431505-fe49-4dca-a289-20468e1c2e22",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Getting Your Home Market-Ready",
"goal": "",
"subject": "Getting Your Home Market-Ready",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>From the moment your home is listed until it sells, ensuring your property is well-prepared and maintained is essential.</p><p>Simple repairs and improvements before listing can significantly enhance your home’s marketability and impact the type of offers you receive.</p><p>As your agent, I’m here to guide you through the process of preparing your home for sale, offering advice on what changes can make the biggest difference to attract potential buyers.</p><p>Let’s connect to discuss how we can get your home ready for a successful sale!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nFrom the moment your home is listed until it sells, ensuring your property is\nwell-prepared and maintained is essential.\n\nSimple repairs and improvements before listing can significantly enhance your\nhome’s marketability and impact the type of offers you receive.\n\nAs your agent, I’m here to guide you through the process of preparing your home\nfor sale, offering advice on what changes can make the biggest difference to\nattract potential buyers.\n\nLet’s connect to discuss how we can get your home ready for a successful sale!"
},
"type": "brand_flow_step"
},
{
"id": "ed347f99-ae9a-4aa9-80a2-ffdfd06bd6a1",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "ddac3c94-90d7-46ca-b553-53b8eef48e06",
"is_automated": true,
"order": 5,
"title": "Market Your Home with the Latest Tools",
"description": "Highlight the use of modern marketing tools for home sales.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "f14c9fbe-301f-4278-8edf-dd381fbeaf9a",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Market Your Home with the Latest Tools",
"goal": "",
"subject": "Market Your Home with the Latest Tools",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Are you ready to list your home and make it stand out to potential buyers? With today’s advanced tools and technology, marketing your home has never been more effective.</p><p>Using professional photography, engaging videos, and digital platforms, I’ll ensure your home reaches the right audience. From online listings to targeted campaigns, I'll showcase your property in the best light to attract serious buyers.</p><p>Let’s connect to discuss how we can use technology to maximize your home’s visibility and appeal!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nAre you ready to list your home and make it stand out to potential buyers? With\ntoday’s advanced tools and technology, marketing your home has never been more\neffective.\n\nUsing professional photography, engaging videos, and digital platforms, I’ll\nensure your home reaches the right audience. From online listings to targeted\ncampaigns, I'll showcase your property in the best light to attract serious\nbuyers.\n\nLet’s connect to discuss how we can use technology to maximize your home’s\nvisibility and appeal!"
},
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": true
},
{
"id": "371f551a-06ae-4452-91dd-a579c7a668ca",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Strategic Seller Engagement",
"description": "Nurture potential sellers with a series of timely, informative emails designed to highlight your expertise.",
"steps": [
{
"id": "8463ec1e-54fa-49ca-9322-5a5748472d0f",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "371f551a-06ae-4452-91dd-a579c7a668ca",
"is_automated": true,
"order": 0,
"title": "Make Your Next Move a Strategic One",
"description": "Encourage strategic planning for home selling.",
"event_type": "last_step_date",
"wait_for": {
"days": 1
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "f1d27995-d14e-4922-979f-22f8f35884b3",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Make Your Next Move a Strategic One",
"goal": "",
"subject": "Make Your Next Move a Strategic One",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>If you’re thinking about selling your home, it’s always a good idea to make a strategic plan. With the right approach, you can attract motivated buyers and get the best possible price for your property.</p><p>I’d love to answer any questions you have about the selling process and share how I’ll professionally market your home to ensure it stands out in the market.</p><p>Let’s connect and discuss your goals!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nIf you’re thinking about selling your home, it’s always a good idea to make a\nstrategic plan. With the right approach, you can attract motivated buyers and\nget the best possible price for your property.\n\nI’d love to answer any questions you have about the selling process and share\nhow I’ll professionally market your home to ensure it stands out in the market.\n\nLet’s connect and discuss your goals!"
},
"type": "brand_flow_step"
},
{
"id": "c49fea41-f038-4a19-9cae-f34e42580e47",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "371f551a-06ae-4452-91dd-a579c7a668ca",
"is_automated": true,
"order": 1,
"title": "Is Now the Right Time to Sell?",
"description": "Help sellers evaluate market timing.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "8d6b54bf-bd7c-4f11-8681-74ad92bf7579",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Is Now the Right Time to Sell?",
"goal": "",
"subject": "Is Now the Right Time to Sell?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>When it comes to real estate, timing can make all the difference.</p><p>If you’re wondering whether now is the right time to sell your home, I’m here to help. Using advanced property valuation tools, I can provide you with insights into your home’s current market value and guide you in making an informed decision.</p><p>Let’s connect to discuss your goals and explore your options!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nWhen it comes to real estate, timing can make all the difference.\n\nIf you’re wondering whether now is the right time to sell your home, I’m here to\nhelp. Using advanced property valuation tools, I can provide you with insights\ninto your home’s current market value and guide you in making an informed\ndecision.\n\nLet’s connect to discuss your goals and explore your options!"
},
"type": "brand_flow_step"
},
{
"id": "d240ebdc-ab02-4edb-827c-1a07c05fcb49",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "371f551a-06ae-4452-91dd-a579c7a668ca",
"is_automated": true,
"order": 2,
"title": "Maximize Your Home’s Online Exposure",
"description": "Showcase online marketing strategies.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "b6c4e8da-e96a-407e-bc44-172bf4870784",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Maximize Your Home’s Online Exposure",
"goal": "",
"subject": "Maximize Your Home’s Online Exposure",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>In today’s market, capturing the attention of online buyers is essential to successfully selling your home. A strong digital marketing plan ensures your property stands out and reaches the right audience.</p><p>Here’s how I’ll get your home the attention it deserves:</p><ul><li><strong>Comprehensive Marketing</strong> – I’ll showcase your home through professional photography, detailed property descriptions, and targeted online campaigns.</li><li><strong>Engaging Online Presence</strong> – I’ll utilize the best platforms to highlight your home and connect with serious buyers.</li></ul><p>Let’s connect to discuss how we can make your home shine online and attract motivated buyers!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nIn today’s market, capturing the attention of online buyers is essential to\nsuccessfully selling your home. A strong digital marketing plan ensures your\nproperty stands out and reaches the right audience.\n\nHere’s how I’ll get your home the attention it deserves:\n\n * Comprehensive Marketing – I’ll showcase your home through professional\n photography, detailed property descriptions, and targeted online campaigns.\n * Engaging Online Presence – I’ll utilize the best platforms to highlight your\n home and connect with serious buyers.\n\nLet’s connect to discuss how we can make your home shine online and attract\nmotivated buyers!"
},
"type": "brand_flow_step"
},
{
"id": "2ae8c627-0f98-4dfc-a00c-59ea228a4d6c",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "371f551a-06ae-4452-91dd-a579c7a668ca",
"is_automated": true,
"order": 3,
"title": "The Value of Working with an Experienced Agent",
"description": "Highlight the benefits of hiring an agent.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "1ec46977-f3fb-4fe2-8be1-fd046c588147",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "The Value of Working with an Experienced Agent",
"goal": "",
"subject": "The Value of Working with an Experienced Agent",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Homes listed by an experienced agent often achieve higher sales prices than those sold directly by the owner.</p><p>As your agent, I’ll create a tailored marketing strategy designed to maximize your home’s value and attract the right buyers. From professional marketing to expert negotiation, I’m here to help you achieve the best possible outcome for your sale.</p><p>Let’s connect to discuss how my approach can bring more value to your home-selling experience!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nHomes listed by an experienced agent often achieve higher sales prices than\nthose sold directly by the owner.\n\nAs your agent, I’ll create a tailored marketing strategy designed to maximize\nyour home’s value and attract the right buyers. From professional marketing to\nexpert negotiation, I’m here to help you achieve the best possible outcome for\nyour sale.\n\nLet’s connect to discuss how my approach can bring more value to your\nhome-selling experience!"
},
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": true
},
{
"id": "d805cec7-fa66-40c4-8f8e-0dba93455f9d",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Home Buying Made Simple",
"description": "Provide personalized support and expert guidance at every step of the home buying journey.",
"steps": [
{
"id": "52bb8ac9-04a8-4bba-8733-4c3b29ea270f",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d805cec7-fa66-40c4-8f8e-0dba93455f9d",
"is_automated": true,
"order": 0,
"title": "Excited to Start Your Home Search?",
"description": "Welcome clients and set expectations for the journey ahead.",
"event_type": "last_step_date",
"wait_for": {
"days": 1
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "11cdfedb-a42c-4ff6-ad32-53acef3c0aa5",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Excited to Start Your Home Search?",
"goal": "",
"subject": "Excited to Start Your Home Search?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Congratulations on taking the first step toward finding your dream home! Buying a home is an exciting milestone, but it can also feel overwhelming at times. With so many decisions to make and steps to navigate, having the right support is essential.</p><p>As your real estate agent, I’ll be here to guide you every step of the way, ensuring you’re confident and informed throughout the process. From identifying the right home to navigating the details of the transaction, I’m committed to making your journey as smooth and rewarding as possible.</p><p>Are you ready to take the next step? Let’s connect and start turning your homeownership dreams into reality.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nCongratulations on taking the first step toward finding your dream home! Buying\na home is an exciting milestone, but it can also feel overwhelming at times.\nWith so many decisions to make and steps to navigate, having the right support\nis essential.\n\nAs your real estate agent, I’ll be here to guide you every step of the way,\nensuring you’re confident and informed throughout the process. From identifying\nthe right home to navigating the details of the transaction, I’m committed to\nmaking your journey as smooth and rewarding as possible.\n\nAre you ready to take the next step? Let’s connect and start turning your\nhomeownership dreams into reality."
},
"type": "brand_flow_step"
},
{
"id": "a4dd7900-144a-46b0-a7b6-85affbcb6d52",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d805cec7-fa66-40c4-8f8e-0dba93455f9d",
"is_automated": true,
"order": 1,
"title": "The Importance of a Trusted Real Estate Professional",
"description": "Highlight the value of having an experienced agent.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "296b23e1-fc8b-4002-835e-96619febf3d6",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "The Importance of a Trusted Real Estate Professional",
"goal": "",
"subject": "The Importance of a Trusted Real Estate Professional",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>When making one of the biggest investments of your life, having a reliable and knowledgeable real estate professional by your side is essential to ensuring a smooth and successful process.</p><p>As your agent, I’m dedicated to helping you navigate the complexities of the home buying journey with integrity and expertise. My goal is to understand your unique needs and work tirelessly to help you find the home that’s perfect for you.</p><p>Ready to get started? Let’s connect and begin discussing your real estate goals!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nWhen making one of the biggest investments of your life, having a reliable and\nknowledgeable real estate professional by your side is essential to ensuring a\nsmooth and successful process.\n\nAs your agent, I’m dedicated to helping you navigate the complexities of the\nhome buying journey with integrity and expertise. My goal is to understand your\nunique needs and work tirelessly to help you find the home that’s perfect for\nyou.\n\nReady to get started? Let’s connect and begin discussing your real estate goals!"
},
"type": "brand_flow_step"
},
{
"id": "9f5c56e3-c4ba-408b-84d1-5ac0d9d9e2d4",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d805cec7-fa66-40c4-8f8e-0dba93455f9d",
"is_automated": true,
"order": 2,
"title": "Ready to Start Your Home Search?",
"description": "Encourage clients to begin their home search.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "46b35f79-4b68-41cd-b08b-2584e7ae3bfe",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Ready to Start Your Home Search?",
"goal": "",
"subject": "Ready to Start Your Home Search?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Most sellers rely on a professional to help them navigate the complexities of selling their home. As a buyer, you deserve the same level of expertise and guidance.</p><p>A trusted real estate agent can help you find a home that fits your needs and budget while providing support every step of the way. From searching for the right property to navigating the closing process, I’m here to make your journey seamless and stress-free.</p><p>Let’s connect today to discuss your next steps and start your home buying journey!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nMost sellers rely on a professional to help them navigate the complexities of\nselling their home. As a buyer, you deserve the same level of expertise and\nguidance.\n\nA trusted real estate agent can help you find a home that fits your needs and\nbudget while providing support every step of the way. From searching for the\nright property to navigating the closing process, I’m here to make your journey\nseamless and stress-free.\n\nLet’s connect today to discuss your next steps and start your home buying\njourney!"
},
"type": "brand_flow_step"
},
{
"id": "f48144e1-b415-41a1-951d-48df479e4f1e",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d805cec7-fa66-40c4-8f8e-0dba93455f9d",
"is_automated": true,
"order": 3,
"title": "Enhance Your Home Search with Expert Guidance",
"description": "Show the benefits of having an expert during the search process.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "bd1c1f32-8866-43fd-99cb-5a60e57b4d1f",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Enhance Your Home Search with Expert Guidance",
"goal": "",
"subject": "Enhance Your Home Search with Expert Guidance",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>With today’s technology, buyers have countless listings at their fingertips. Real estate websites and apps make it easy to start your search from the comfort of your home, during your commute, or anywhere in between.</p><p>However, having an experienced agent by your side adds a critical advantage. I can help you identify the homes that truly match your needs and provide valuable insights on properties, including those not yet listed on the market.</p><p>Don’t let your dream home slip away—let’s connect today and take your search to the next level!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nWith today’s technology, buyers have countless listings at their fingertips.\nReal estate websites and apps make it easy to start your search from the comfort\nof your home, during your commute, or anywhere in between.\n\nHowever, having an experienced agent by your side adds a critical advantage. I\ncan help you identify the homes that truly match your needs and provide valuable\ninsights on properties, including those not yet listed on the market.\n\nDon’t let your dream home slip away—let’s connect today and take your search to\nthe next level!"
},
"type": "brand_flow_step"
},
{
"id": "87ca55be-ba63-4580-a350-49f27ff67087",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d805cec7-fa66-40c4-8f8e-0dba93455f9d",
"is_automated": true,
"order": 4,
"title": "Smart Budgeting for Your New Home",
"description": "Provide budgeting tips for a successful home purchase.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "745a3832-3407-49fb-897b-ca2b836489e8",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Smart Budgeting for Your New Home",
"goal": "",
"subject": "Smart Budgeting for Your New Home",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Buying a home is one of life’s biggest financial decisions, and careful planning is essential to ensuring long-term success. By creating a well-thought-out budget, you can protect yourself from unexpected challenges and feel confident in your financial responsibilities as a homeowner.</p><p>I’d love to help you navigate this process and explore options that fit your needs and budget. Let’s connect soon to discuss how we can prepare you for this exciting step!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nBuying a home is one of life’s biggest financial decisions, and careful planning\nis essential to ensuring long-term success. By creating a well-thought-out\nbudget, you can protect yourself from unexpected challenges and feel confident\nin your financial responsibilities as a homeowner.\n\nI’d love to help you navigate this process and explore options that fit your\nneeds and budget. Let’s connect soon to discuss how we can prepare you for this\nexciting step!"
},
"type": "brand_flow_step"
},
{
"id": "b9c43043-c791-4bd8-a131-4e27169a1f82",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d805cec7-fa66-40c4-8f8e-0dba93455f9d",
"is_automated": true,
"order": 5,
"title": "Let My Experience Guide Your Home Search",
"description": "Reassure clients with your expertise and support.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "05a9245b-0a67-4d0a-8edc-a43a86e94fc6",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Let My Experience Guide Your Home Search",
"goal": "",
"subject": "Let My Experience Guide Your Home Search",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>With years of experience as a real estate professional, my passion lies in helping buyers like you find and purchase their dream homes. Buying a home involves many decisions, and having a knowledgeable guide by your side can help you avoid common pitfalls and achieve the best possible outcome.</p><p>Even if you’re not ready to buy right now, I’d be happy to meet and discuss your future plans. Whether it’s answering questions or providing insights into the process, I’m here to help whenever you need support.</p><p>Let’s connect and start planning for your next steps!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nWith years of experience as a real estate professional, my passion lies in\nhelping buyers like you find and purchase their dream homes. Buying a home\ninvolves many decisions, and having a knowledgeable guide by your side can help\nyou avoid common pitfalls and achieve the best possible outcome.\n\nEven if you’re not ready to buy right now, I’d be happy to meet and discuss your\nfuture plans. Whether it’s answering questions or providing insights into the\nprocess, I’m here to help whenever you need support.\n\nLet’s connect and start planning for your next steps!"
},
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": true
},
{
"id": "64423356-da78-4053-b640-07d9949d516c",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Staying Connected with Homebuyers",
"description": "Build relationships and maintain engagement with prospective buyers.",
"steps": [
{
"id": "a76b8e94-1c15-4cb8-b5fb-66830f966691",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "64423356-da78-4053-b640-07d9949d516c",
"is_automated": true,
"order": 0,
"title": "Welcome to Your Home Buying Journey",
"description": "Welcome clients and set expectations for the process.",
"event_type": "last_step_date",
"wait_for": {
"days": 1
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "dff7f583-4161-4227-97ce-fbaaa9902f3a",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Welcome to Your Home Buying Journey",
"goal": "",
"subject": "Welcome to Your Home Buying Journey",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Thank you for reaching out—it’s an honor to be part of your home search journey.</p><p>My goal is to make the process as smooth and stress-free as possible, and I’m excited to provide you with the guidance and support you need to find your perfect home.</p><p>If you have any questions or need additional information, don’t hesitate to reach out. I’m here to assist you every step of the way.</p><p>Looking forward to working together!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nThank you for reaching out—it’s an honor to be part of your home search journey.\n\nMy goal is to make the process as smooth and stress-free as possible, and I’m\nexcited to provide you with the guidance and support you need to find your\nperfect home.\n\nIf you have any questions or need additional information, don’t hesitate to\nreach out. I’m here to assist you every step of the way.\n\nLooking forward to working together!"
},
"type": "brand_flow_step"
},
{
"id": "b235d208-57f3-4a65-8b23-530d9568584e",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "64423356-da78-4053-b640-07d9949d516c",
"is_automated": true,
"order": 1,
"title": "Stay Ahead with New Listing Updates",
"description": "Encourage clients to sign up for listing updates.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "6a15b712-f39b-4b9c-a15c-cc04aaf91c04",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Stay Ahead with New Listing Updates",
"goal": "",
"subject": "Stay Ahead with New Listing Updates",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Your home search just got easier! By signing up for my email updates, you’ll receive notifications about new listings that match your search criteria as soon as they hit the market.</p><p>In today’s competitive market, staying informed gives you a significant advantage. The right home is waiting, and these updates ensure you don’t miss out on potential opportunities.</p><p>To get started, simply reply to this email or give me a call. I’m here to help you find the perfect home.</p><p>Looking forward to connecting soon!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nYour home search just got easier! By signing up for my email updates, you’ll\nreceive notifications about new listings that match your search criteria as soon\nas they hit the market.\n\nIn today’s competitive market, staying informed gives you a significant\nadvantage. The right home is waiting, and these updates ensure you don’t miss\nout on potential opportunities.\n\nTo get started, simply reply to this email or give me a call. I’m here to help\nyou find the perfect home.\n\nLooking forward to connecting soon!"
},
"type": "brand_flow_step"
},
{
"id": "c32b5e20-7d41-4cb8-bd3e-055f28d4c87c",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "64423356-da78-4053-b640-07d9949d516c",
"is_automated": true,
"order": 2,
"title": "Why Owning a Home is Worth It",
"description": "Highlight the benefits of homeownership.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "4b805c0e-9c56-464d-a97f-76214f129861",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Why Owning a Home is Worth It",
"goal": "",
"subject": "Why Owning a Home is Worth It",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Owning a home is one of the most fulfilling milestones you can achieve. It’s more than just a purchase—it’s an investment in your future.</p><p>Understanding the buying process and making informed choices are key to avoiding unnecessary challenges along the way. That’s where I come in.</p><p>As we navigate this journey together, I’ll ensure every step is clear, from explaining terms to preparing for the final paperwork. My goal is to provide you with expert advice and valuable resources so you can make confident, informed decisions.</p><p>Let’s make your homeownership dreams a reality. Reach out anytime—I’m here to help.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nOwning a home is one of the most fulfilling milestones you can achieve. It’s\nmore than just a purchase—it’s an investment in your future.\n\nUnderstanding the buying process and making informed choices are key to avoiding\nunnecessary challenges along the way. That’s where I come in.\n\nAs we navigate this journey together, I’ll ensure every step is clear, from\nexplaining terms to preparing for the final paperwork. My goal is to provide you\nwith expert advice and valuable resources so you can make confident, informed\ndecisions.\n\nLet’s make your homeownership dreams a reality. Reach out anytime—I’m here to\nhelp."
},
"type": "brand_flow_step"
},
{
"id": "9d9b42e1-6c21-4b11-9e84-5623fe1f0dbc",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "64423356-da78-4053-b640-07d9949d516c",
"is_automated": true,
"order": 3,
"title": "Checking In on Your Home Search",
"description": "Check in on clients' progress and offer support.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "184d2fe1-dc9f-4ff8-85de-7e3171b9ed7a",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Checking In on Your Home Search",
"goal": "",
"subject": "Checking In on Your Home Search",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>How’s your home search coming along?</p><p>If there’s anything you need—whether it’s advice, more options to explore, or answers to questions—I’m here to help!</p><p>Feel free to reach out anytime. Let’s make sure you’re on track to finding your perfect home.</p><p>Looking forward to hearing from you!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nHow’s your home search coming along?\n\nIf there’s anything you need—whether it’s advice, more options to explore, or\nanswers to questions—I’m here to help!\n\nFeel free to reach out anytime. Let’s make sure you’re on track to finding your\nperfect home.\n\nLooking forward to hearing from you!"
},
"type": "brand_flow_step"
},
{
"id": "2ae1ca74-a69f-4ce0-a95a-cc827112d8cb",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "64423356-da78-4053-b640-07d9949d516c",
"is_automated": true,
"order": 4,
"title": "Essential Tips for Your Home Buying Journey",
"description": "Share key tips for navigating the home buying process.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "fcd78c56-89af-44c9-a36a-8295800631a7",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Essential Tips for Your Home Buying Journey",
"goal": "",
"subject": "Essential Tips for Your Home Buying Journey",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Buying a home is both an exciting adventure and one of life’s most significant investments.</p><p>Whether it’s your first purchase or you’ve done this before, having knowledgeable support makes all the difference.</p><p>Here are a few key points to consider:</p><ul><li>Location: Choose a neighborhood that fits your lifestyle and future plans.</li><li>Mortgage Terms: Understand your financing options to make informed decisions.</li><li>Additional Costs: Plan for expenses beyond the purchase price, like taxes, insurance, and maintenance.</li></ul><p>I’m here to guide you through every step of the process.</p><p>Let’s connect to discuss how I can help make your home buying experience seamless and successful!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nBuying a home is both an exciting adventure and one of life’s most significant\ninvestments.\n\nWhether it’s your first purchase or you’ve done this before, having\nknowledgeable support makes all the difference.\n\nHere are a few key points to consider:\n\n * Location: Choose a neighborhood that fits your lifestyle and future plans.\n * Mortgage Terms: Understand your financing options to make informed decisions.\n * Additional Costs: Plan for expenses beyond the purchase price, like taxes,\n insurance, and maintenance.\n\nI’m here to guide you through every step of the process.\n\nLet’s connect to discuss how I can help make your home buying experience\nseamless and successful!"
},
"type": "brand_flow_step"
},
{
"id": "d7c02a5e-670f-4110-901a-813ee7b66e35",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "64423356-da78-4053-b640-07d9949d516c",
"is_automated": true,
"order": 5,
"title": "Unlock the Power of Pre-Approval",
"description": "Explain the importance of pre-approval.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "bd7f12c8-d08f-4a60-9656-8f0ca6e37241",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Unlock the Power of Pre-Approval",
"goal": "",
"subject": "Unlock the Power of Pre-Approval",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Before starting your home search, one of the most important steps is establishing your purchasing power through pre-approval with a trusted lender.</p><p>Pre-approval not only helps you understand what homes fit your budget but also positions you as a serious buyer when it’s time to make an offer.</p><p>If you’d like to discuss the process or need recommendations, let’s connect soon. I’m here to help you every step of the way!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nBefore starting your home search, one of the most important steps is\nestablishing your purchasing power through pre-approval with a trusted lender.\n\nPre-approval not only helps you understand what homes fit your budget but also\npositions you as a serious buyer when it’s time to make an offer.\n\nIf you’d like to discuss the process or need recommendations, let’s connect\nsoon. I’m here to help you every step of the way!"
},
"type": "brand_flow_step"
},
{
"id": "a0e81bd7-e051-40e2-9976-995bf777e8a3",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "64423356-da78-4053-b640-07d9949d516c",
"is_automated": true,
"order": 6,
"title": "Stay Informed with Market Insights",
"description": "Keep clients updated with market insights.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "3def5e90-8f8f-4032-a53e-f929e42229bb",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Stay Informed with Market Insights",
"goal": "",
"subject": "Stay Informed with Market Insights",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Searching for a home—whether online, through local ads, or by spotting listings as you drive by—often leads to questions about properties that catch your eye.</p><p>I’m here to provide you with the latest market insights and detailed information about homes that interest you, ensuring you’re equipped with everything you need to make informed decisions.</p><p>Let’s connect today to discuss how I can help with your search!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nSearching for a home—whether online, through local ads, or by spotting listings\nas you drive by—often leads to questions about properties that catch your eye.\n\nI’m here to provide you with the latest market insights and detailed information\nabout homes that interest you, ensuring you’re equipped with everything you need\nto make informed decisions.\n\nLet’s connect today to discuss how I can help with your search!"
},
"type": "brand_flow_step"
},
{
"id": "b68063f0-2ed2-4320-bf7b-77f26c9a0495",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "64423356-da78-4053-b640-07d9949d516c",
"is_automated": true,
"order": 7,
"title": "Let’s Schedule a Home Viewing",
"description": "Encourage clients to schedule property viewings.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "52d0b6af-a6fe-4e7d-87d9-e54fa3eb767e",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Let’s Schedule a Home Viewing",
"goal": "",
"subject": "Let’s Schedule a Home Viewing",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Ready to take the next step in your home search?</p><p>If any of the homes we’ve discussed have caught your interest, now is a great time to schedule a viewing. Seeing a property in person can make all the difference in finding the right fit for you.</p><p>Let’s connect and find a time that works for your schedule—I’m here to make the process as seamless as possible!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nReady to take the next step in your home search?\n\nIf any of the homes we’ve discussed have caught your interest, now is a great\ntime to schedule a viewing. Seeing a property in person can make all the\ndifference in finding the right fit for you.\n\nLet’s connect and find a time that works for your schedule—I’m here to make the\nprocess as seamless as possible!"
},
"type": "brand_flow_step"
},
{
"id": "e22b9419-fcf9-4b3b-994b-0a924fcd7742",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "64423356-da78-4053-b640-07d9949d516c",
"is_automated": true,
"order": 8,
"title": "Is It Time to Update Your Pre-Approval?",
"description": "Remind clients to update pre-approval if needed.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "a5300125-7ffb-483e-892f-3da678a449ad",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Is It Time to Update Your Pre-Approval?",
"goal": "",
"subject": "Is It Time to Update Your Pre-Approval?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>If you’ve already been pre-approved, great job on taking that important step! I just wanted to check in to ensure your loan information is still up to date.</p><p>Significant changes—like new purchases, employment shifts, or updates to your credit score—can sometimes affect your pre-approval status.</p><p>If you have any questions or need guidance, feel free to reach out. I’m here to help you stay on track toward finding your perfect home!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nIf you’ve already been pre-approved, great job on taking that important step! I\njust wanted to check in to ensure your loan information is still up to date.\n\nSignificant changes—like new purchases, employment shifts, or updates to your\ncredit score—can sometimes affect your pre-approval status.\n\nIf you have any questions or need guidance, feel free to reach out. I’m here to\nhelp you stay on track toward finding your perfect home!"
},
"type": "brand_flow_step"
},
{
"id": "6c9a9301-834c-4cef-8714-e8c8ae58ceda",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "64423356-da78-4053-b640-07d9949d516c",
"is_automated": true,
"order": 9,
"title": "Ready to Make Your Move?",
"description": "Guide clients through the offer-making process.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "916d1045-eafb-4a13-8ca7-853a80168c16",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Ready to Make Your Move?",
"goal": "",
"subject": "Ready to Make Your Move?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>You’ve found the home of your dreams—congratulations!</p><p>The next step is making an offer, and I’m here to guide you through the process. With a dedicated real estate professional on your side, you can feel confident that your offer will be carefully crafted and effectively presented.</p><p>Let’s connect today to take this exciting step together!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nYou’ve found the home of your dreams—congratulations!\n\nThe next step is making an offer, and I’m here to guide you through the process.\nWith a dedicated real estate professional on your side, you can feel confident\nthat your offer will be carefully crafted and effectively presented.\n\nLet’s connect today to take this exciting step together!"
},
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": true
},
{
"id": "206edd4f-2f0a-4154-b9eb-ba9e6a626a01",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Consistent Home Seller Outreach",
"description": "Stay connected with potential sellers through timely and personalized follow-up emails.",
"steps": [
{
"id": "98f93784-7d09-4eb7-9b89-059f16bfd405",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "206edd4f-2f0a-4154-b9eb-ba9e6a626a01",
"is_automated": true,
"order": 0,
"title": "Thank You for Considering Me!",
"description": "Express gratitude and introduce your unique value.",
"event_type": "last_step_date",
"wait_for": {
"days": 1
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "2923394e-8b8c-4102-a84a-c8c983ee230a",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Thank You for Considering Me!",
"goal": "",
"subject": "Thank You for Considering Me!",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Thank you for considering me to list your home—it’s truly an honor! I want to share a few things that set me apart as a real estate professional:</p><ol><li>I’m always accessible and responsive—feel free to test me!</li><li>I provide regular updates on your home’s marketing progress to keep you informed every step of the way.</li><li>I’m fully committed to going above and beyond to sell your home efficiently and effectively.</li></ol><p>I’d love the opportunity to connect and discuss your goals. Let’s schedule a time to chat and get started!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nThank you for considering me to list your home—it’s truly an honor! I want to\nshare a few things that set me apart as a real estate professional:\n\n 1. I’m always accessible and responsive—feel free to test me!\n 2. I provide regular updates on your home’s marketing progress to keep you\n informed every step of the way.\n 3. I’m fully committed to going above and beyond to sell your home efficiently\n and effectively.\n\nI’d love the opportunity to connect and discuss your goals. Let’s schedule a\ntime to chat and get started!"
},
"type": "brand_flow_step"
},
{
"id": "c8f3f39e-9990-471d-bc69-7db936d13c24",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "206edd4f-2f0a-4154-b9eb-ba9e6a626a01",
"is_automated": true,
"order": 1,
"title": "Can I Share Some Expert Selling Tips?",
"description": "Offer valuable insights to build trust and engagement.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "2dc67109-3d9b-4e5d-9342-bf83cd59c4a3",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Can I Share Some Expert Selling Tips?",
"goal": "",
"subject": "Can I Share Some Expert Selling Tips?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>I’d love the chance to share some of the best advice I’ve learned about successfully selling homes—it could make a big difference in your experience.</p><p>Are you available this afternoon? I have some time open and would be happy to connect. Let me know what works for you!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nI’d love the chance to share some of the best advice I’ve learned about\nsuccessfully selling homes—it could make a big difference in your experience.\n\nAre you available this afternoon? I have some time open and would be happy to\nconnect. Let me know what works for you!"
},
"type": "brand_flow_step"
},
{
"id": "4edbb97d-1b38-4c13-a7f6-30339065d7c3",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "206edd4f-2f0a-4154-b9eb-ba9e6a626a01",
"is_automated": true,
"order": 2,
"title": "Let’s Discuss Your Home Selling Timeline",
"description": "Check in and align with the seller's goals.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "e5b4164c-99fb-4bed-ad19-49dfded75882",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Let’s Discuss Your Home Selling Timeline",
"goal": "",
"subject": "Let’s Discuss Your Home Selling Timeline",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>It’s been a busy week, but I wanted to take a moment to check in with you. My goal is to ensure you get the best price for your home while aligning with your preferred timeline.</p><p>What does your ideal timeline look like? Are you hoping to move quickly, or do you have some flexibility?</p><p>Let me know—I’m here to help you navigate the process and make it as seamless as possible!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nIt’s been a busy week, but I wanted to take a moment to check in with you. My\ngoal is to ensure you get the best price for your home while aligning with your\npreferred timeline.\n\nWhat does your ideal timeline look like? Are you hoping to move quickly, or do\nyou have some flexibility?\n\nLet me know—I’m here to help you navigate the process and make it as seamless as\npossible!"
},
"type": "brand_flow_step"
},
{
"id": "e3a658a8-4cfe-4322-b993-8856fcf63a32",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "206edd4f-2f0a-4154-b9eb-ba9e6a626a01",
"is_automated": true,
"order": 3,
"title": "Highlighting Your Home's Best Feature",
"description": "Help sellers identify key selling points.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "17036671-dd40-4cfd-af8c-6691cb8e0353",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Highlighting Your Home's Best Feature",
"goal": "",
"subject": "Highlighting Your Home's Best Feature",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>When selling your home, it’s helpful to think about what made you fall in love with it in the first place. Chances are, those same features will attract the right buyer—someone with similar tastes and values.</p><p>So, what do you think is your home’s best feature? Is it a spacious kitchen, a cozy living room, or a beautiful backyard?</p><p>Let’s connect to discuss how we can highlight those qualities and make your home stand out to the perfect buyer!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nWhen selling your home, it’s helpful to think about what made you fall in love\nwith it in the first place. Chances are, those same features will attract the\nright buyer—someone with similar tastes and values.\n\nSo, what do you think is your home’s best feature? Is it a spacious kitchen, a\ncozy living room, or a beautiful backyard?\n\nLet’s connect to discuss how we can highlight those qualities and make your home\nstand out to the perfect buyer!"
},
"type": "brand_flow_step"
},
{
"id": "3f273b7a-df8f-46f7-b477-df399540318f",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "206edd4f-2f0a-4154-b9eb-ba9e6a626a01",
"is_automated": true,
"order": 4,
"title": "Ready When You Are",
"description": "Reassure sellers of your ongoing support.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "0218c8be-c88c-4073-9325-fb2e6764248c",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Ready When You Are",
"goal": "",
"subject": "Ready When You Are",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>I noticed we haven’t had the chance to connect in the past couple of weeks, but I want you to know that I’m here, ready, and excited to help whenever you’re ready to move forward.</p><p>One thing about me—I don’t give up easily! I’m committed to supporting you every step of the way, but I also understand that timing is everything. Feel free to let me know when the time is right for you.</p><p>Looking forward to hearing from you!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nI noticed we haven’t had the chance to connect in the past couple of weeks, but\nI want you to know that I’m here, ready, and excited to help whenever you’re\nready to move forward.\n\nOne thing about me—I don’t give up easily! I’m committed to supporting you every\nstep of the way, but I also understand that timing is everything. Feel free to\nlet me know when the time is right for you.\n\nLooking forward to hearing from you!"
},
"type": "brand_flow_step"
},
{
"id": "fa457716-df75-408f-b7c5-6a97665baa62",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "206edd4f-2f0a-4154-b9eb-ba9e6a626a01",
"is_automated": true,
"order": 5,
"title": "Are You Still Thinking About Selling?",
"description": "Reignite interest and offer support for next steps.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "31ec7dc7-ab53-4f72-b064-37e49afd573f",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Are You Still Thinking About Selling?",
"goal": "",
"subject": "Are You Still Thinking About Selling?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Are you still considering selling your home this year?</p><p>If so, I’d love to connect and help you plan the best next steps to get started. Whether it’s setting the right price, preparing your home for the market, or exploring your selling options, I’m here to guide you through the process.</p><p>Let me know when you’re ready to chat—I’d be happy to help!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nAre you still considering selling your home this year?\n\nIf so, I’d love to connect and help you plan the best next steps to get started.\nWhether it’s setting the right price, preparing your home for the market, or\nexploring your selling options, I’m here to guide you through the process.\n\nLet me know when you’re ready to chat—I’d be happy to help!"
},
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": false
},
{
"id": "ee19330e-666e-473f-bb0d-84975ba96475",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Personalized Home Buying Path",
"description": "Comprehensive guidance for prospective buyers.",
"steps": [
{
"id": "053378c7-542b-4e5d-a69d-67931e2e5032",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "ee19330e-666e-473f-bb0d-84975ba96475",
"is_automated": true,
"order": 0,
"title": "Begin Your Home Buying Journey",
"description": "Introduce the home buying process.",
"event_type": "last_step_date",
"wait_for": {
"days": 1
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "848d547a-af7f-43b2-a700-b76534a68356",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Begin Your Home Buying Journey with Expert Guidance",
"goal": "",
"subject": "Begin Your Home Buying Journey with Expert Guidance",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Embarking on the journey to homeownership involves several key steps: selecting a dedicated agent, searching for properties, making offers, securing financing, and finalizing the purchase.</p><p>As your agent, I am committed to making this process straightforward and seamless for you and will be your dedicated partner from start to finish.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nEmbarking on the journey to homeownership involves several key steps: selecting\na dedicated agent, searching for properties, making offers, securing financing,\nand finalizing the purchase.\n\nAs your agent, I am committed to making this process straightforward and\nseamless for you and will be your dedicated partner from start to finish."
},
"type": "brand_flow_step"
},
{
"id": "1d7f91e5-6e68-4dea-bfef-a686463a0117",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "ee19330e-666e-473f-bb0d-84975ba96475",
"is_automated": true,
"order": 1,
"title": "Prepare for Your Home Buying Journey",
"description": "Help clients prepare for a successful home buying experience.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "3040dd31-62ea-48c9-93dd-846e80de4860",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Prepare for Your Home Buying Journey",
"goal": "",
"subject": "Prepare for Your Home Buying Journey",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Embarking on the path to homeownership is a significant milestone, and being well-prepared is essential for a successful experience.</p><p>As your dedicated real estate agent, I am committed to understanding your unique needs, expectations, and goals. We’ll discuss your desired timeline, specific requirements, and address any questions you may have about the home buying process.</p><p>With a focus on integrity and personalized service, I aim to make your home buying journey smooth and rewarding.</p><p>To schedule your no-obligation virtual or in-person consultation, please contact me today.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nEmbarking on the path to homeownership is a significant milestone, and being\nwell-prepared is essential for a successful experience.\n\nAs your dedicated real estate agent, I am committed to understanding your unique\nneeds, expectations, and goals. We’ll discuss your desired timeline, specific\nrequirements, and address any questions you may have about the home buying\nprocess.\n\nWith a focus on integrity and personalized service, I aim to make your home\nbuying journey smooth and rewarding.\n\nTo schedule your no-obligation virtual or in-person consultation, please contact\nme today."
},
"type": "brand_flow_step"
},
{
"id": "a3a1c2c8-2540-4ef2-90a9-4324a92ecafc",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "ee19330e-666e-473f-bb0d-84975ba96475",
"is_automated": true,
"order": 2,
"title": "Your First Step to Home Buying Success",
"description": "Highlight the importance of mortgage pre-approval.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "88b3ce94-09dc-4d57-9173-5bfb8f1cb184",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Your First Step to Home Buying Success",
"goal": "",
"subject": "Your First Step to Home Buying Success",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>In my experience, many homebuyers, especially first-timers, have faced disappointment after finding their dream home, only to discover they didn’t qualify for the necessary mortgage.</p><p>To prevent such situations, I recommend beginning with the mortgage pre-approval process. This step clarifies your budget, ensuring we focus on homes within your financial reach and streamlining your home search.</p><p>I can connect you with trusted mortgage professionals who can assist you in obtaining a pre-approval promptly.</p><p>I'm here to help you get started. Let's set up a call to discuss this further.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nIn my experience, many homebuyers, especially first-timers, have faced\ndisappointment after finding their dream home, only to discover they didn’t\nqualify for the necessary mortgage.\n\nTo prevent such situations, I recommend beginning with the mortgage pre-approval\nprocess. This step clarifies your budget, ensuring we focus on homes within your\nfinancial reach and streamlining your home search.\n\nI can connect you with trusted mortgage professionals who can assist you in\nobtaining a pre-approval promptly.\n\nI'm here to help you get started. Let's set up a call to discuss this further."
},
"type": "brand_flow_step"
},
{
"id": "9dffb9a8-6253-487f-8c2b-5b5d31a954f6",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "ee19330e-666e-473f-bb0d-84975ba96475",
"is_automated": true,
"order": 3,
"title": "Let's Discover Your Ideal Home",
"description": "Guide clients in finding homes that match their criteria.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "2727dba1-061c-45dc-9446-5ad0e41436eb",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Let's Discover Your Ideal Home",
"goal": "",
"subject": "Let's Discover Your Ideal Home",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Finding a home that perfectly matches your needs can be a complex endeavor. As your dedicated real estate agent, I am here to simplify the process and guide you every step of the way.</p><p>With access to the latest market trends and real-time property information, I can provide you with up-to-date insights on homes that meet your criteria.</p><p>I will be your trusted advisor throughout the entire journey—from the initial search to navigating the closing process—ensuring a seamless and successful experience.</p><p>Contact me today to schedule a virtual or in-person appointment and take the first step toward finding your new home.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nFinding a home that perfectly matches your needs can be a complex endeavor. As\nyour dedicated real estate agent, I am here to simplify the process and guide\nyou every step of the way.\n\nWith access to the latest market trends and real-time property information, I\ncan provide you with up-to-date insights on homes that meet your criteria.\n\nI will be your trusted advisor throughout the entire journey—from the initial\nsearch to navigating the closing process—ensuring a seamless and successful\nexperience.\n\nContact me today to schedule a virtual or in-person appointment and take the\nfirst step toward finding your new home."
},
"type": "brand_flow_step"
},
{
"id": "4d94aa1e-e47c-44ac-ba63-3e15e9d47ec0",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "ee19330e-666e-473f-bb0d-84975ba96475",
"is_automated": true,
"order": 4,
"title": "Understand Your Buying Power",
"description": "Help clients determine their budget and financial readiness.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "7ac62d9a-df44-483f-b4f0-bce0bc4e0f58",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Understand Your Buying Power",
"goal": "",
"subject": "Understand Your Buying Power",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>If you're searching for a home, one of the first steps is determining how much home fits comfortably within your budget.</p><p>Setting expectations too high can lead to financial strain, leaving little room for other important expenses and maintaining a good quality of life.</p><p>As your trusted real estate advisor, I’ll help you define a reasonable price range based on your income, expenses, and overall budget. Together, we’ll ensure your home fits your lifestyle—not just financially, but holistically.</p><p>I want you to love your new home while still enjoying the life it supports.</p><p>Let’s connect today to explore what price range works best for you.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nIf you're searching for a home, one of the first steps is determining how much\nhome fits comfortably within your budget.\n\nSetting expectations too high can lead to financial strain, leaving little room\nfor other important expenses and maintaining a good quality of life.\n\nAs your trusted real estate advisor, I’ll help you define a reasonable price\nrange based on your income, expenses, and overall budget. Together, we’ll ensure\nyour home fits your lifestyle—not just financially, but holistically.\n\nI want you to love your new home while still enjoying the life it supports.\n\nLet’s connect today to explore what price range works best for you."
},
"type": "brand_flow_step"
},
{
"id": "4c38d8f6-e1d3-45a7-8778-3284c0a44f8a",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "ee19330e-666e-473f-bb0d-84975ba96475",
"is_automated": true,
"order": 5,
"title": "Let’s Find Your Perfect Home",
"description": "Assist clients in narrowing down their home search.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "db92b621-5188-4b07-a1ae-36fa2df09925",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Let’s Find Your Perfect Home",
"goal": "",
"subject": "Let’s Find Your Perfect Home",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>The perfect home for you is out there, and I’m here to help you find it.</p><p>While it’s not as simple as point and click, having an agent who is dedicated to your needs makes all the difference. I’m committed to doing the hard work, ensuring we find a home that truly fits your vision—not just settling for the sake of convenience.</p><p>With thousands of homes on the market, I’ll help you narrow down your options based on size, price, neighborhood, amenities, and more. Together, we’ll focus on the properties that meet your needs and align with your goals.</p><p>Let’s discuss your home search and get started on finding the perfect fit. I look forward to connecting at your convenience.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nThe perfect home for you is out there, and I’m here to help you find it.\n\nWhile it’s not as simple as point and click, having an agent who is dedicated to\nyour needs makes all the difference. I’m committed to doing the hard work,\nensuring we find a home that truly fits your vision—not just settling for the\nsake of convenience.\n\nWith thousands of homes on the market, I’ll help you narrow down your options\nbased on size, price, neighborhood, amenities, and more. Together, we’ll focus\non the properties that meet your needs and align with your goals.\n\nLet’s discuss your home search and get started on finding the perfect fit. I\nlook forward to connecting at your convenience."
},
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": false
},
{
"id": "60f669d9-36e1-4668-bde6-d409fa737b13",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Staying Connected with Past Clients",
"description": "Build and maintain strong relationships with past clients through thoughtful follow-up and personalized communication.",
"steps": [
{
"id": "2dce496f-b162-4cea-ab11-fe768b13ed07",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "60f669d9-36e1-4668-bde6-d409fa737b13",
"is_automated": true,
"order": 0,
"title": "Checking In",
"description": "Reconnect with past clients.",
"event_type": "last_step_date",
"wait_for": {},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "87d355c2-de6f-4d5a-b6fa-5ec073594043",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Checking In",
"goal": "",
"subject": "Checking In",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>I hope this message finds you well! How have you been since we last worked together? I trust that your new home has been everything you hoped it would be and more.</p><p>Building lasting relationships with my clients is incredibly important to me. Even if some time has passed since we’ve been in touch, I want you to know that I’m always here to assist with any real estate-related questions or needs you may have.</p><p>Feel free to reach out anytime—I’d love to hear how you’re doing!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nI hope this message finds you well! How have you been since we last worked\ntogether? I trust that your new home has been everything you hoped it would be\nand more.\n\nBuilding lasting relationships with my clients is incredibly important to me.\nEven if some time has passed since we’ve been in touch, I want you to know that\nI’m always here to assist with any real estate-related questions or needs you\nmay have.\n\nFeel free to reach out anytime—I’d love to hear how you’re doing!"
},
"type": "brand_flow_step"
},
{
"id": "532469be-e199-4636-92f6-f76f4fdacde7",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "60f669d9-36e1-4668-bde6-d409fa737b13",
"is_automated": true,
"order": 1,
"title": "Stay Informed on Market Trends",
"description": "Share updates on real estate trends.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "f5a39f49-60f4-4af5-9323-c2af7409fa1c",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Stay Informed on Market Trends",
"goal": "",
"subject": "Stay Informed on Market Trends",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>I hope you’re doing well! Since we last worked together, the real estate market has evolved, offering new opportunities for both buyers and sellers.</p><p>Home prices continue to shift, presenting unique advantages depending on your goals. Whether you’re considering buying, investing, or simply staying informed, understanding the current trends can help you make the most of the market.</p><p>If you’d like to discuss how these changes might impact you, feel free to reach out—I’m always here to help!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nI hope you’re doing well! Since we last worked together, the real estate market\nhas evolved, offering new opportunities for both buyers and sellers.\n\nHome prices continue to shift, presenting unique advantages depending on your\ngoals. Whether you’re considering buying, investing, or simply staying informed,\nunderstanding the current trends can help you make the most of the market.\n\nIf you’d like to discuss how these changes might impact you, feel free to reach\nout—I’m always here to help!"
},
"type": "brand_flow_step"
},
{
"id": "1372025f-0337-4f48-9b25-d14b60648605",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "60f669d9-36e1-4668-bde6-d409fa737b13",
"is_automated": true,
"order": 2,
"title": "Transform Your Home into Your Dream Space",
"description": "Inspire home improvement ideas.",
"event_type": "last_step_date",
"wait_for": {
"days": 14
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "571d5ec5-e497-4a3e-b5e7-252867029281",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Transform Your Home into Your Dream Space",
"goal": "",
"subject": "Transform Your Home into Your Dream Space",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Settling into a new home often comes with exciting projects to make the space truly your own. From renovations to smaller updates, turning your house into your unique sanctuary is a rewarding process.</p><p>If you’re in need of trusted professionals to assist with home improvement, I’d be happy to help! Over the years, I’ve built a strong network of reliable experts in our community who can handle everything from repairs to redesigns.</p><p>Feel free to reach out if you’d like a referral or advice—I’m here to support you every step of the way!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nSettling into a new home often comes with exciting projects to make the space\ntruly your own. From renovations to smaller updates, turning your house into\nyour unique sanctuary is a rewarding process.\n\nIf you’re in need of trusted professionals to assist with home improvement, I’d\nbe happy to help! Over the years, I’ve built a strong network of reliable\nexperts in our community who can handle everything from repairs to redesigns.\n\nFeel free to reach out if you’d like a referral or advice—I’m here to support\nyou every step of the way!"
},
"type": "brand_flow_step"
},
{
"id": "9ef7ac1e-e6a7-4f45-a1e1-752429e8f643",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "60f669d9-36e1-4668-bde6-d409fa737b13",
"is_automated": true,
"order": 3,
"title": "Is Real Estate Investment Right for You?",
"description": "Explore real estate investment opportunities.",
"event_type": "last_step_date",
"wait_for": {
"days": 21
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "371a48bd-1e90-4e2c-a96c-72792bf7c78d",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Is Real Estate Investment Right for You?",
"goal": "",
"subject": "Is Real Estate Investment Right for You?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Have you ever thought about investing in real estate to generate income and build long-term wealth? The current market offers promising opportunities for investors, with properties that could provide both steady cash flow and appreciation potential over time.</p><p>Whether you’re exploring options for your first investment property or adding to an existing portfolio, now may be a great time to take the next step.</p><p>If this sounds interesting, let’s connect to discuss your goals and explore opportunities that align with your vision!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nHave you ever thought about investing in real estate to generate income and\nbuild long-term wealth? The current market offers promising opportunities for\ninvestors, with properties that could provide both steady cash flow and\nappreciation potential over time.\n\nWhether you’re exploring options for your first investment property or adding to\nan existing portfolio, now may be a great time to take the next step.\n\nIf this sounds interesting, let’s connect to discuss your goals and explore\nopportunities that align with your vision!"
},
"type": "brand_flow_step"
},
{
"id": "cd8cc4ca-3bab-4e56-81d0-45156dae3cd9",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "60f669d9-36e1-4668-bde6-d409fa737b13",
"is_automated": true,
"order": 4,
"title": "Here to Help—Now and in the Future",
"description": "Reaffirm your ongoing support.",
"event_type": "last_step_date",
"wait_for": {
"days": 28
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "c1fb85fc-4347-45d1-932d-c07821c91d62",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Here to Help—Now and in the Future",
"goal": "",
"subject": "Here to Help—Now and in the Future",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Having worked together before, you know how committed I am to helping my clients achieve the best possible outcomes. Over the years, I’ve been fortunate to build a network of connections through referrals from satisfied clients like you—it’s something I’m truly grateful for.</p><p>Even if you don’t have any real estate needs at the moment, I’d still love to hear from you and catch up! Feel free to reach out anytime—I’m always here to help or simply reconnect.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nHaving worked together before, you know how committed I am to helping my clients\nachieve the best possible outcomes. Over the years, I’ve been fortunate to build\na network of connections through referrals from satisfied clients like you—it’s\nsomething I’m truly grateful for.\n\nEven if you don’t have any real estate needs at the moment, I’d still love to\nhear from you and catch up! Feel free to reach out anytime—I’m always here to\nhelp or simply reconnect."
},
"type": "brand_flow_step"
},
{
"id": "9ae9fe30-b17a-48b4-90e3-ec709f19135c",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "60f669d9-36e1-4668-bde6-d409fa737b13",
"is_automated": true,
"order": 5,
"title": "Considering Your Next Move?",
"description": "Encourage discussions on future plans.",
"event_type": "last_step_date",
"wait_for": {
"days": 35
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "e1dd4e48-ef42-4722-808b-52909832f6d9",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Considering Your Next Move?",
"goal": "",
"subject": "Considering Your Next Move?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Whether you’re thinking about your next move, exploring the potential of an investment property, or simply curious about current market opportunities, I’m here to help.</p><p>I deeply value the relationship we built when we worked together to (purchase/sell) your home, and I’d love the chance to collaborate again in the future. If there’s anything you’d like to discuss, don’t hesitate to reach out—I’m always here for you.</p><p>Looking forward to connecting!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nWhether you’re thinking about your next move, exploring the potential of an\ninvestment property, or simply curious about current market opportunities, I’m\nhere to help.\n\nI deeply value the relationship we built when we worked together to\n(purchase/sell) your home, and I’d love the chance to collaborate again in the\nfuture. If there’s anything you’d like to discuss, don’t hesitate to reach\nout—I’m always here for you.\n\nLooking forward to connecting!"
},
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": false
},
{
"id": "0e744bd6-d553-4cc0-8f95-1e60350069b4",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Finding Your Perfect-Fit Home",
"description": "Help clients navigate important decisions to match their home with their lifestyle.",
"steps": [
{
"id": "da0d58f4-e912-4a8e-b683-863ca8510e1d",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "0e744bd6-d553-4cc0-8f95-1e60350069b4",
"is_automated": true,
"order": 0,
"title": "Time to Right-Size Your Home",
"description": "Help clients start their right-sizing journey.",
"event_type": "last_step_date",
"wait_for": {
"days": 1
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "a4ec6cec-3023-4013-bd55-430fda5579f0",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Finding Your Perfect Fit: Time to Right-Size Your Home",
"goal": "",
"subject": "Finding Your Perfect Fit: Time to Right-Size Your Home",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Your home should match your lifestyle, not the other way around.</p><p>For some, this means downsizing to reduce expenses and simplify life. For others, it’s all about upsizing—creating space for a growing family or bringing loved ones together in a multigenerational home.</p><p>Whatever your needs, finding the \"right size\" is about creating a home that supports the way you live.</p><p>Need a dedicated home office? A nursery? Or maybe you’re ready for something cozier and easier to maintain? Let’s explore the perfect option for you.</p><p>Upsizing, downsizing, or somewhere in between, I’m here to help you navigate the process.</p><p>Reach out today, and let’s start your right-sizing journey!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nYour home should match your lifestyle, not the other way around.\n\nFor some, this means downsizing to reduce expenses and simplify life. For\nothers, it’s all about upsizing—creating space for a growing family or bringing\nloved ones together in a multigenerational home.\n\nWhatever your needs, finding the \"right size\" is about creating a home that\nsupports the way you live.\n\nNeed a dedicated home office? A nursery? Or maybe you’re ready for something\ncozier and easier to maintain? Let’s explore the perfect option for you.\n\nUpsizing, downsizing, or somewhere in between, I’m here to help you navigate the\nprocess.\n\nReach out today, and let’s start your right-sizing journey!"
},
"type": "brand_flow_step"
},
{
"id": "d0702683-6606-442f-8f14-b795607b6352",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "0e744bd6-d553-4cc0-8f95-1e60350069b4",
"is_automated": true,
"order": 1,
"title": "Your Home Search Made Simple",
"description": "Make the home search process smooth and virtual.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "c8a9790d-4cea-4192-95d8-defb5e83987d",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Your Home Search Made Simple—Virtually!",
"goal": "",
"subject": "Your Home Search Made Simple—Virtually!",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Thinking about buying a home?</p><p>These days, most of the process can be done from the comfort of your home.</p><p>I’ll help you find properties that match your needs and arrange virtual or in-person tours of your top picks. With mortgage rates still favorable, now is an excellent time to buy—and much of the paperwork, from mortgage applications to closing documents, can be handled online.</p><p>Whether you're ready to start today or just planning for the future, I’m here to make the process smooth and stress-free.</p><p>Let’s connect and get started!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nThinking about buying a home?\n\nThese days, most of the process can be done from the comfort of your home.\n\nI’ll help you find properties that match your needs and arrange virtual or\nin-person tours of your top picks. With mortgage rates still favorable, now is\nan excellent time to buy—and much of the paperwork, from mortgage applications\nto closing documents, can be handled online.\n\nWhether you're ready to start today or just planning for the future, I’m here to\nmake the process smooth and stress-free.\n\nLet’s connect and get started!"
},
"type": "brand_flow_step"
},
{
"id": "2925bb56-3089-433a-956c-2ea6762c211c",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "0e744bd6-d553-4cc0-8f95-1e60350069b4",
"is_automated": true,
"order": 2,
"title": "Find the Perfect Home Office",
"description": "Focus on finding homes with ideal office spaces.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "55e63a0f-2e89-41d9-83a0-fb22197bc422",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Find the Perfect Home Office for Your Lifestyle",
"goal": "",
"subject": "Find the Perfect Home Office for Your Lifestyle",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Working from home has become the new normal, and having the right office space can make all the difference.</p><p>I’m here to help you find a home that truly fits your needs—no cramped corners or makeshift setups. While some listings advertise a \"home office,\" they often fall short of expectations.</p><p>I’ll ensure your search focuses on homes with well-lit, quiet spaces that can comfortably accommodate your desk, printer, and maybe even a cozy chair for breaks.</p><p>Ready to start your search or just have questions? Let’s connect and find your ideal space together.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nWorking from home has become the new normal, and having the right office space\ncan make all the difference.\n\nI’m here to help you find a home that truly fits your needs—no cramped corners\nor makeshift setups. While some listings advertise a \"home office,\" they often\nfall short of expectations.\n\nI’ll ensure your search focuses on homes with well-lit, quiet spaces that can\ncomfortably accommodate your desk, printer, and maybe even a cozy chair for\nbreaks.\n\nReady to start your search or just have questions? Let’s connect and find your\nideal space together."
},
"type": "brand_flow_step"
},
{
"id": "eda4a3eb-3806-4bec-9e09-eb2520dda32f",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "0e744bd6-d553-4cc0-8f95-1e60350069b4",
"is_automated": true,
"order": 3,
"title": "Make Informed Mortgage Choices",
"description": "Guide clients through mortgage decisions.",
"event_type": "last_step_date",
"wait_for": {
"days": 14
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "51ba1b16-4648-417e-81db-dc813fee0b1b",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Make Informed Choices About Your Mortgage",
"goal": "",
"subject": "Make Informed Choices About Your Mortgage",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Thinking about buying your first home or upgrading to a new one? Here’s the key takeaway: interest rates remain near historic lows, making now a great time to act.</p><p>As your real estate partner, I’ll guide you every step of the way. Here’s what I can help with:</p><ul><li><strong>Finding Your Budget Sweet Spot:</strong> I’ll help you determine a realistic price range so you can focus on homes that truly fit your financial situation.</li><li><strong>Navigating Pre-Approval:</strong> Getting pre-approved is essential, and I’ll make sure the process is smooth and stress-free so you can shop with confidence.</li><li><strong>Understanding Mortgage Options:</strong> A 15-year mortgage helps you build equity faster but comes with higher monthly payments. A 30-year mortgage offers lower payments spread over time. Adjustable-rate mortgages (ARMs) start low but increase over time.</li></ul><p>Let’s connect and discuss your options today!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nThinking about buying your first home or upgrading to a new one? Here’s the key\ntakeaway: interest rates remain near historic lows, making now a great time to\nact.\n\nAs your real estate partner, I’ll guide you every step of the way. Here’s what I\ncan help with:\n\n * Finding Your Budget Sweet Spot: I’ll help you determine a realistic price\n range so you can focus on homes that truly fit your financial situation.\n * Navigating Pre-Approval: Getting pre-approved is essential, and I’ll make\n sure the process is smooth and stress-free so you can shop with confidence.\n * Understanding Mortgage Options: A 15-year mortgage helps you build equity\n faster but comes with higher monthly payments. A 30-year mortgage offers\n lower payments spread over time. Adjustable-rate mortgages (ARMs) start low\n but increase over time.\n\nLet’s connect and discuss your options today!"
},
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": false
},
{
"id": "bc0d0831-4d62-43b7-ace7-c4458ea0cc39",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Simplifying Your Home Selling Journey",
"description": "Provide expert guidance and personalized support to sellers throughout the home-selling process.",
"steps": [
{
"id": "7f594551-a8ca-433f-ac9e-c1466a75fb47",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "bc0d0831-4d62-43b7-ace7-c4458ea0cc39",
"is_automated": true,
"order": 0,
"title": "Thinking About Selling Your Home?",
"description": "Engage sellers by discussing the benefits of selling their home now.",
"event_type": "last_step_date",
"wait_for": {
"days": 1
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "de287f06-470d-4b33-8efb-8575ffcae765",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Thinking About Selling Your Home?",
"goal": "",
"subject": "Thinking About Selling Your Home?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Are you wondering about the value of your home and whether now is the right time to sell? Deciding to sell is a significant decision, and having the right information can help you make a confident choice.</p><p>A well-priced home can attract serious buyers and sell quickly, often at an excellent price. If you’re curious about your home’s market value or want insights into the selling process, I’d be happy to assist.</p><p>Let’s connect to discuss your options and explore how we can make the most of today’s market!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nAre you wondering about the value of your home and whether now is the right time\nto sell? Deciding to sell is a significant decision, and having the right\ninformation can help you make a confident choice.\n\nA well-priced home can attract serious buyers and sell quickly, often at an\nexcellent price. If you’re curious about your home’s market value or want\ninsights into the selling process, I’d be happy to assist.\n\nLet’s connect to discuss your options and explore how we can make the most of\ntoday’s market!"
},
"type": "brand_flow_step"
},
{
"id": "a503d42b-8a74-4d68-bff3-5361b9920ca7",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "bc0d0831-4d62-43b7-ace7-c4458ea0cc39",
"is_automated": true,
"order": 1,
"title": "Let’s Find the Right Price for Your Home",
"description": "Highlight the importance of pricing a home correctly.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "ca12fdc4-7d05-48e7-b046-ab72c9f5650c",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Let’s Find the Right Price for Your Home",
"goal": "",
"subject": "Let’s Find the Right Price for Your Home",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>To sell your home successfully, it’s crucial to price it appropriately and market it to the right audience. That’s where my expertise comes in.</p><p>I use tools and strategies to identify the most likely buyers for your home and target the right areas to maximize visibility. By understanding local trends and buyer behavior, I’ll ensure your property is positioned to attract serious interest.</p><p>Let’s connect to discuss how I can help price and market your home effectively for a successful sale!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nTo sell your home successfully, it’s crucial to price it appropriately and\nmarket it to the right audience. That’s where my expertise comes in.\n\nI use tools and strategies to identify the most likely buyers for your home and\ntarget the right areas to maximize visibility. By understanding local trends and\nbuyer behavior, I’ll ensure your property is positioned to attract serious\ninterest.\n\nLet’s connect to discuss how I can help price and market your home effectively\nfor a successful sale!"
},
"type": "brand_flow_step"
},
{
"id": "ec20ff8e-ed8d-4060-ba6f-5c55ca4ebe54",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "bc0d0831-4d62-43b7-ace7-c4458ea0cc39",
"is_automated": true,
"order": 2,
"title": "Simplify Your Home Selling Experience",
"description": "Provide tips to make the selling process easier.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "ff9cadae-8e2b-4001-9368-8202c8fc2cd8",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Simplify Your Home Selling Experience",
"goal": "",
"subject": "Simplify Your Home Selling Experience",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Selling a home can feel overwhelming, but choosing the right real estate professional can make all the difference.</p><p>If you decide to work with me, I’ll guide you through every step of the process, helping you:</p><ul><li>Set the right price to attract serious buyers.</li><li>Market your home effectively to maximize visibility.</li><li>Negotiate the best terms for a successful sale.</li></ul><p>Let’s connect to discuss your goals and how I can make selling your home a smooth and rewarding experience!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nSelling a home can feel overwhelming, but choosing the right real estate\nprofessional can make all the difference.\n\nIf you decide to work with me, I’ll guide you through every step of the process,\nhelping you:\n\n * Set the right price to attract serious buyers.\n * Market your home effectively to maximize visibility.\n * Negotiate the best terms for a successful sale.\n\nLet’s connect to discuss your goals and how I can make selling your home a\nsmooth and rewarding experience!"
},
"type": "brand_flow_step"
},
{
"id": "b4647a4b-3fad-4b60-bed8-5aec88af7da5",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "bc0d0831-4d62-43b7-ace7-c4458ea0cc39",
"is_automated": true,
"order": 3,
"title": "Insights on What Buyers Want",
"description": "Share insights into current buyer trends and preferences.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "80e81743-3499-438f-89b8-7c57c9ebc6f5",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Insights on What Buyers Want",
"goal": "",
"subject": "Insights on What Buyers Want",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>When you’re ready to sell, partnering with a local expert can help you determine the right price for your home.</p><p>I’d be happy to provide you with a report detailing recent sale prices of comparable homes in your area and discuss what buyers are currently looking for.</p><p>Pricing your home correctly is key—too high, and it may sit on the market; too low, and you might leave value on the table. My goal is to help you find the right balance to attract buyers while maximizing your return.</p><p>Let’s connect to explore your options and create a strategy for success!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nWhen you’re ready to sell, partnering with a local expert can help you determine\nthe right price for your home.\n\nI’d be happy to provide you with a report detailing recent sale prices of\ncomparable homes in your area and discuss what buyers are currently looking for.\n\nPricing your home correctly is key—too high, and it may sit on the market; too\nlow, and you might leave value on the table. My goal is to help you find the\nright balance to attract buyers while maximizing your return.\n\nLet’s connect to explore your options and create a strategy for success!"
},
"type": "brand_flow_step"
},
{
"id": "37562045-b31d-4b0b-a65b-8a7260770d38",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "bc0d0831-4d62-43b7-ace7-c4458ea0cc39",
"is_automated": true,
"order": 4,
"title": "Getting Your Home Market-Ready",
"description": "Offer advice on preparing the home for sale.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "6a1e1c6a-5898-44be-b582-12d3c427f0b7",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Getting Your Home Market-Ready",
"goal": "",
"subject": "Getting Your Home Market-Ready",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>From the moment your home is listed until it sells, ensuring your property is well-prepared and maintained is essential.</p><p>Simple repairs and improvements before listing can significantly enhance your home’s marketability and impact the type of offers you receive.</p><p>As your agent, I’m here to guide you through the process of preparing your home for sale, offering advice on what changes can make the biggest difference to attract potential buyers.</p><p>Let’s connect to discuss how we can get your home ready for a successful sale!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nFrom the moment your home is listed until it sells, ensuring your property is\nwell-prepared and maintained is essential.\n\nSimple repairs and improvements before listing can significantly enhance your\nhome’s marketability and impact the type of offers you receive.\n\nAs your agent, I’m here to guide you through the process of preparing your home\nfor sale, offering advice on what changes can make the biggest difference to\nattract potential buyers.\n\nLet’s connect to discuss how we can get your home ready for a successful sale!"
},
"type": "brand_flow_step"
},
{
"id": "0686e27a-99b6-4d5f-93dc-e702b53941b2",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "bc0d0831-4d62-43b7-ace7-c4458ea0cc39",
"is_automated": true,
"order": 5,
"title": "Market Your Home with the Latest Tools",
"description": "Highlight the use of modern marketing tools for home sales.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "e3772c80-9132-4a96-a78f-7954cb6c6e7d",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Market Your Home with the Latest Tools",
"goal": "",
"subject": "Market Your Home with the Latest Tools",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Are you ready to list your home and make it stand out to potential buyers? With today’s advanced tools and technology, marketing your home has never been more effective.</p><p>Using professional photography, engaging videos, and digital platforms, I’ll ensure your home reaches the right audience. From online listings to targeted campaigns, I'll showcase your property in the best light to attract serious buyers.</p><p>Let’s connect to discuss how we can use technology to maximize your home’s visibility and appeal!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nAre you ready to list your home and make it stand out to potential buyers? With\ntoday’s advanced tools and technology, marketing your home has never been more\neffective.\n\nUsing professional photography, engaging videos, and digital platforms, I’ll\nensure your home reaches the right audience. From online listings to targeted\ncampaigns, I'll showcase your property in the best light to attract serious\nbuyers.\n\nLet’s connect to discuss how we can use technology to maximize your home’s\nvisibility and appeal!"
},
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": false
},
{
"id": "fc7ecf35-fc54-4372-a45d-af88841a2da1",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Strategic Seller Engagement",
"description": "Nurture potential sellers with a series of timely, informative emails designed to highlight your expertise.",
"steps": [
{
"id": "c7d9b7d2-0667-4489-aa26-31238e481a5a",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "fc7ecf35-fc54-4372-a45d-af88841a2da1",
"is_automated": true,
"order": 0,
"title": "Make Your Next Move a Strategic One",
"description": "Encourage strategic planning for home selling.",
"event_type": "last_step_date",
"wait_for": {
"days": 1
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "6815258b-1d6a-4a57-aad1-3650fa8e7c93",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Make Your Next Move a Strategic One",
"goal": "",
"subject": "Make Your Next Move a Strategic One",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>If you’re thinking about selling your home, it’s always a good idea to make a strategic plan. With the right approach, you can attract motivated buyers and get the best possible price for your property.</p><p>I’d love to answer any questions you have about the selling process and share how I’ll professionally market your home to ensure it stands out in the market.</p><p>Let’s connect and discuss your goals!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nIf you’re thinking about selling your home, it’s always a good idea to make a\nstrategic plan. With the right approach, you can attract motivated buyers and\nget the best possible price for your property.\n\nI’d love to answer any questions you have about the selling process and share\nhow I’ll professionally market your home to ensure it stands out in the market.\n\nLet’s connect and discuss your goals!"
},
"type": "brand_flow_step"
},
{
"id": "52e290fe-54d3-4e31-acb9-037e350a97cf",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "fc7ecf35-fc54-4372-a45d-af88841a2da1",
"is_automated": true,
"order": 1,
"title": "Is Now the Right Time to Sell?",
"description": "Help sellers evaluate market timing.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "5f2fc631-26b9-495d-b8cc-b6f18921bbcd",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Is Now the Right Time to Sell?",
"goal": "",
"subject": "Is Now the Right Time to Sell?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>When it comes to real estate, timing can make all the difference.</p><p>If you’re wondering whether now is the right time to sell your home, I’m here to help. Using advanced property valuation tools, I can provide you with insights into your home’s current market value and guide you in making an informed decision.</p><p>Let’s connect to discuss your goals and explore your options!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nWhen it comes to real estate, timing can make all the difference.\n\nIf you’re wondering whether now is the right time to sell your home, I’m here to\nhelp. Using advanced property valuation tools, I can provide you with insights\ninto your home’s current market value and guide you in making an informed\ndecision.\n\nLet’s connect to discuss your goals and explore your options!"
},
"type": "brand_flow_step"
},
{
"id": "1d6238e7-5467-4fb6-b1fa-75cec4b6cb1d",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "fc7ecf35-fc54-4372-a45d-af88841a2da1",
"is_automated": true,
"order": 2,
"title": "Maximize Your Home’s Online Exposure",
"description": "Showcase online marketing strategies.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "da0614f7-836d-4917-908f-fcc65dca780f",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Maximize Your Home’s Online Exposure",
"goal": "",
"subject": "Maximize Your Home’s Online Exposure",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>In today’s market, capturing the attention of online buyers is essential to successfully selling your home. A strong digital marketing plan ensures your property stands out and reaches the right audience.</p><p>Here’s how I’ll get your home the attention it deserves:</p><ul><li><strong>Comprehensive Marketing</strong> – I’ll showcase your home through professional photography, detailed property descriptions, and targeted online campaigns.</li><li><strong>Engaging Online Presence</strong> – I’ll utilize the best platforms to highlight your home and connect with serious buyers.</li></ul><p>Let’s connect to discuss how we can make your home shine online and attract motivated buyers!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nIn today’s market, capturing the attention of online buyers is essential to\nsuccessfully selling your home. A strong digital marketing plan ensures your\nproperty stands out and reaches the right audience.\n\nHere’s how I’ll get your home the attention it deserves:\n\n * Comprehensive Marketing – I’ll showcase your home through professional\n photography, detailed property descriptions, and targeted online campaigns.\n * Engaging Online Presence – I’ll utilize the best platforms to highlight your\n home and connect with serious buyers.\n\nLet’s connect to discuss how we can make your home shine online and attract\nmotivated buyers!"
},
"type": "brand_flow_step"
},
{
"id": "b09f4b7f-5369-486d-8153-d95c149b5ec4",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "fc7ecf35-fc54-4372-a45d-af88841a2da1",
"is_automated": true,
"order": 3,
"title": "The Value of Working with an Experienced Agent",
"description": "Highlight the benefits of hiring an agent.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "cc923270-7c54-46d3-81ca-eed216e4205e",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "The Value of Working with an Experienced Agent",
"goal": "",
"subject": "The Value of Working with an Experienced Agent",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Homes listed by an experienced agent often achieve higher sales prices than those sold directly by the owner.</p><p>As your agent, I’ll create a tailored marketing strategy designed to maximize your home’s value and attract the right buyers. From professional marketing to expert negotiation, I’m here to help you achieve the best possible outcome for your sale.</p><p>Let’s connect to discuss how my approach can bring more value to your home-selling experience!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nHomes listed by an experienced agent often achieve higher sales prices than\nthose sold directly by the owner.\n\nAs your agent, I’ll create a tailored marketing strategy designed to maximize\nyour home’s value and attract the right buyers. From professional marketing to\nexpert negotiation, I’m here to help you achieve the best possible outcome for\nyour sale.\n\nLet’s connect to discuss how my approach can bring more value to your\nhome-selling experience!"
},
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": false
},
{
"id": "8a0d82bf-d28c-4fda-b7d7-3b76118eeb06",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Home Buying Made Simple",
"description": "Provide personalized support and expert guidance at every step of the home buying journey.",
"steps": [
{
"id": "e36aa972-9ea5-4333-a2c6-7002258347f0",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "8a0d82bf-d28c-4fda-b7d7-3b76118eeb06",
"is_automated": true,
"order": 0,
"title": "Excited to Start Your Home Search?",
"description": "Welcome clients and set expectations for the journey ahead.",
"event_type": "last_step_date",
"wait_for": {
"days": 1
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "62957bb5-40f5-406e-bd5b-55003e6d3899",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Excited to Start Your Home Search?",
"goal": "",
"subject": "Excited to Start Your Home Search?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Congratulations on taking the first step toward finding your dream home! Buying a home is an exciting milestone, but it can also feel overwhelming at times. With so many decisions to make and steps to navigate, having the right support is essential.</p><p>As your real estate agent, I’ll be here to guide you every step of the way, ensuring you’re confident and informed throughout the process. From identifying the right home to navigating the details of the transaction, I’m committed to making your journey as smooth and rewarding as possible.</p><p>Are you ready to take the next step? Let’s connect and start turning your homeownership dreams into reality.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nCongratulations on taking the first step toward finding your dream home! Buying\na home is an exciting milestone, but it can also feel overwhelming at times.\nWith so many decisions to make and steps to navigate, having the right support\nis essential.\n\nAs your real estate agent, I’ll be here to guide you every step of the way,\nensuring you’re confident and informed throughout the process. From identifying\nthe right home to navigating the details of the transaction, I’m committed to\nmaking your journey as smooth and rewarding as possible.\n\nAre you ready to take the next step? Let’s connect and start turning your\nhomeownership dreams into reality."
},
"type": "brand_flow_step"
},
{
"id": "c38cbece-ea40-40a6-89e9-58187bf28ef5",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "8a0d82bf-d28c-4fda-b7d7-3b76118eeb06",
"is_automated": true,
"order": 1,
"title": "The Importance of a Trusted Real Estate Professional",
"description": "Highlight the value of having an experienced agent.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "6e2b76ea-3738-4af6-8898-1767dba73299",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "The Importance of a Trusted Real Estate Professional",
"goal": "",
"subject": "The Importance of a Trusted Real Estate Professional",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>When making one of the biggest investments of your life, having a reliable and knowledgeable real estate professional by your side is essential to ensuring a smooth and successful process.</p><p>As your agent, I’m dedicated to helping you navigate the complexities of the home buying journey with integrity and expertise. My goal is to understand your unique needs and work tirelessly to help you find the home that’s perfect for you.</p><p>Ready to get started? Let’s connect and begin discussing your real estate goals!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nWhen making one of the biggest investments of your life, having a reliable and\nknowledgeable real estate professional by your side is essential to ensuring a\nsmooth and successful process.\n\nAs your agent, I’m dedicated to helping you navigate the complexities of the\nhome buying journey with integrity and expertise. My goal is to understand your\nunique needs and work tirelessly to help you find the home that’s perfect for\nyou.\n\nReady to get started? Let’s connect and begin discussing your real estate goals!"
},
"type": "brand_flow_step"
},
{
"id": "b9b1ea43-b2e2-4fe2-b218-224a2f15e78c",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "8a0d82bf-d28c-4fda-b7d7-3b76118eeb06",
"is_automated": true,
"order": 2,
"title": "Ready to Start Your Home Search?",
"description": "Encourage clients to begin their home search.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "c4c8cd17-96f9-4348-a864-4d747a91a636",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Ready to Start Your Home Search?",
"goal": "",
"subject": "Ready to Start Your Home Search?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Most sellers rely on a professional to help them navigate the complexities of selling their home. As a buyer, you deserve the same level of expertise and guidance.</p><p>A trusted real estate agent can help you find a home that fits your needs and budget while providing support every step of the way. From searching for the right property to navigating the closing process, I’m here to make your journey seamless and stress-free.</p><p>Let’s connect today to discuss your next steps and start your home buying journey!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nMost sellers rely on a professional to help them navigate the complexities of\nselling their home. As a buyer, you deserve the same level of expertise and\nguidance.\n\nA trusted real estate agent can help you find a home that fits your needs and\nbudget while providing support every step of the way. From searching for the\nright property to navigating the closing process, I’m here to make your journey\nseamless and stress-free.\n\nLet’s connect today to discuss your next steps and start your home buying\njourney!"
},
"type": "brand_flow_step"
},
{
"id": "99b8b2f6-9e02-4eaa-956b-7d28f11fc6f3",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "8a0d82bf-d28c-4fda-b7d7-3b76118eeb06",
"is_automated": true,
"order": 3,
"title": "Enhance Your Home Search with Expert Guidance",
"description": "Show the benefits of having an expert during the search process.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "f5022ae0-98f8-4d16-9e74-99f9b2f78037",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Enhance Your Home Search with Expert Guidance",
"goal": "",
"subject": "Enhance Your Home Search with Expert Guidance",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>With today’s technology, buyers have countless listings at their fingertips. Real estate websites and apps make it easy to start your search from the comfort of your home, during your commute, or anywhere in between.</p><p>However, having an experienced agent by your side adds a critical advantage. I can help you identify the homes that truly match your needs and provide valuable insights on properties, including those not yet listed on the market.</p><p>Don’t let your dream home slip away—let’s connect today and take your search to the next level!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nWith today’s technology, buyers have countless listings at their fingertips.\nReal estate websites and apps make it easy to start your search from the comfort\nof your home, during your commute, or anywhere in between.\n\nHowever, having an experienced agent by your side adds a critical advantage. I\ncan help you identify the homes that truly match your needs and provide valuable\ninsights on properties, including those not yet listed on the market.\n\nDon’t let your dream home slip away—let’s connect today and take your search to\nthe next level!"
},
"type": "brand_flow_step"
},
{
"id": "d091ff2e-91f8-40fe-9efa-5fade7255873",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "8a0d82bf-d28c-4fda-b7d7-3b76118eeb06",
"is_automated": true,
"order": 4,
"title": "Smart Budgeting for Your New Home",
"description": "Provide budgeting tips for a successful home purchase.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "ba51cbd9-fdf8-484c-b4e7-910cfcbeb0d6",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Smart Budgeting for Your New Home",
"goal": "",
"subject": "Smart Budgeting for Your New Home",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Buying a home is one of life’s biggest financial decisions, and careful planning is essential to ensuring long-term success. By creating a well-thought-out budget, you can protect yourself from unexpected challenges and feel confident in your financial responsibilities as a homeowner.</p><p>I’d love to help you navigate this process and explore options that fit your needs and budget. Let’s connect soon to discuss how we can prepare you for this exciting step!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nBuying a home is one of life’s biggest financial decisions, and careful planning\nis essential to ensuring long-term success. By creating a well-thought-out\nbudget, you can protect yourself from unexpected challenges and feel confident\nin your financial responsibilities as a homeowner.\n\nI’d love to help you navigate this process and explore options that fit your\nneeds and budget. Let’s connect soon to discuss how we can prepare you for this\nexciting step!"
},
"type": "brand_flow_step"
},
{
"id": "88e7714a-e308-40f5-89cb-bf4456152ba4",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "8a0d82bf-d28c-4fda-b7d7-3b76118eeb06",
"is_automated": true,
"order": 5,
"title": "Let My Experience Guide Your Home Search",
"description": "Reassure clients with your expertise and support.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "8296a33d-b0d2-47c6-a24b-fd4ec52aba31",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Let My Experience Guide Your Home Search",
"goal": "",
"subject": "Let My Experience Guide Your Home Search",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>With years of experience as a real estate professional, my passion lies in helping buyers like you find and purchase their dream homes. Buying a home involves many decisions, and having a knowledgeable guide by your side can help you avoid common pitfalls and achieve the best possible outcome.</p><p>Even if you’re not ready to buy right now, I’d be happy to meet and discuss your future plans. Whether it’s answering questions or providing insights into the process, I’m here to help whenever you need support.</p><p>Let’s connect and start planning for your next steps!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nWith years of experience as a real estate professional, my passion lies in\nhelping buyers like you find and purchase their dream homes. Buying a home\ninvolves many decisions, and having a knowledgeable guide by your side can help\nyou avoid common pitfalls and achieve the best possible outcome.\n\nEven if you’re not ready to buy right now, I’d be happy to meet and discuss your\nfuture plans. Whether it’s answering questions or providing insights into the\nprocess, I’m here to help whenever you need support.\n\nLet’s connect and start planning for your next steps!"
},
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": false
},
{
"id": "264f678c-df5b-401b-8a48-5588491ec8dc",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Staying Connected with Homebuyers",
"description": "Build relationships and maintain engagement with prospective buyers.",
"steps": [
{
"id": "9f6c50a9-50bb-4800-9e12-82c2207156f7",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "264f678c-df5b-401b-8a48-5588491ec8dc",
"is_automated": true,
"order": 0,
"title": "Welcome to Your Home Buying Journey",
"description": "Welcome clients and set expectations for the process.",
"event_type": "last_step_date",
"wait_for": {
"days": 1
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "cb59cf80-efd4-4093-a834-8e1c46d1aa94",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Welcome to Your Home Buying Journey",
"goal": "",
"subject": "Welcome to Your Home Buying Journey",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Thank you for reaching out—it’s an honor to be part of your home search journey.</p><p>My goal is to make the process as smooth and stress-free as possible, and I’m excited to provide you with the guidance and support you need to find your perfect home.</p><p>If you have any questions or need additional information, don’t hesitate to reach out. I’m here to assist you every step of the way.</p><p>Looking forward to working together!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nThank you for reaching out—it’s an honor to be part of your home search journey.\n\nMy goal is to make the process as smooth and stress-free as possible, and I’m\nexcited to provide you with the guidance and support you need to find your\nperfect home.\n\nIf you have any questions or need additional information, don’t hesitate to\nreach out. I’m here to assist you every step of the way.\n\nLooking forward to working together!"
},
"type": "brand_flow_step"
},
{
"id": "f751afcf-ca91-42e3-be0d-15a8abebf85a",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "264f678c-df5b-401b-8a48-5588491ec8dc",
"is_automated": true,
"order": 1,
"title": "Stay Ahead with New Listing Updates",
"description": "Encourage clients to sign up for listing updates.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "5703745f-bf21-450f-846d-816f14690ab4",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Stay Ahead with New Listing Updates",
"goal": "",
"subject": "Stay Ahead with New Listing Updates",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Your home search just got easier! By signing up for my email updates, you’ll receive notifications about new listings that match your search criteria as soon as they hit the market.</p><p>In today’s competitive market, staying informed gives you a significant advantage. The right home is waiting, and these updates ensure you don’t miss out on potential opportunities.</p><p>To get started, simply reply to this email or give me a call. I’m here to help you find the perfect home.</p><p>Looking forward to connecting soon!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nYour home search just got easier! By signing up for my email updates, you’ll\nreceive notifications about new listings that match your search criteria as soon\nas they hit the market.\n\nIn today’s competitive market, staying informed gives you a significant\nadvantage. The right home is waiting, and these updates ensure you don’t miss\nout on potential opportunities.\n\nTo get started, simply reply to this email or give me a call. I’m here to help\nyou find the perfect home.\n\nLooking forward to connecting soon!"
},
"type": "brand_flow_step"
},
{
"id": "6a303624-5a51-4660-b6bb-fb6c938560ad",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "264f678c-df5b-401b-8a48-5588491ec8dc",
"is_automated": true,
"order": 2,
"title": "Why Owning a Home is Worth It",
"description": "Highlight the benefits of homeownership.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "eec52f45-d663-4e82-bd76-bd926065d558",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Why Owning a Home is Worth It",
"goal": "",
"subject": "Why Owning a Home is Worth It",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Owning a home is one of the most fulfilling milestones you can achieve. It’s more than just a purchase—it’s an investment in your future.</p><p>Understanding the buying process and making informed choices are key to avoiding unnecessary challenges along the way. That’s where I come in.</p><p>As we navigate this journey together, I’ll ensure every step is clear, from explaining terms to preparing for the final paperwork. My goal is to provide you with expert advice and valuable resources so you can make confident, informed decisions.</p><p>Let’s make your homeownership dreams a reality. Reach out anytime—I’m here to help.</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nOwning a home is one of the most fulfilling milestones you can achieve. It’s\nmore than just a purchase—it’s an investment in your future.\n\nUnderstanding the buying process and making informed choices are key to avoiding\nunnecessary challenges along the way. That’s where I come in.\n\nAs we navigate this journey together, I’ll ensure every step is clear, from\nexplaining terms to preparing for the final paperwork. My goal is to provide you\nwith expert advice and valuable resources so you can make confident, informed\ndecisions.\n\nLet’s make your homeownership dreams a reality. Reach out anytime—I’m here to\nhelp."
},
"type": "brand_flow_step"
},
{
"id": "d827e929-4935-4c3d-865d-e32cf07d2a88",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "264f678c-df5b-401b-8a48-5588491ec8dc",
"is_automated": true,
"order": 3,
"title": "Checking In on Your Home Search",
"description": "Check in on clients' progress and offer support.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "4bc9b0c3-73ce-453f-b9fa-3823eae1f254",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Checking In on Your Home Search",
"goal": "",
"subject": "Checking In on Your Home Search",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>How’s your home search coming along?</p><p>If there’s anything you need—whether it’s advice, more options to explore, or answers to questions—I’m here to help!</p><p>Feel free to reach out anytime. Let’s make sure you’re on track to finding your perfect home.</p><p>Looking forward to hearing from you!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nHow’s your home search coming along?\n\nIf there’s anything you need—whether it’s advice, more options to explore, or\nanswers to questions—I’m here to help!\n\nFeel free to reach out anytime. Let’s make sure you’re on track to finding your\nperfect home.\n\nLooking forward to hearing from you!"
},
"type": "brand_flow_step"
},
{
"id": "192cc253-bf44-474c-adf8-5e27ebd6a738",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "264f678c-df5b-401b-8a48-5588491ec8dc",
"is_automated": true,
"order": 4,
"title": "Essential Tips for Your Home Buying Journey",
"description": "Share key tips for navigating the home buying process.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "427d1280-9037-4b08-971b-972f33fe76b2",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Essential Tips for Your Home Buying Journey",
"goal": "",
"subject": "Essential Tips for Your Home Buying Journey",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Buying a home is both an exciting adventure and one of life’s most significant investments.</p><p>Whether it’s your first purchase or you’ve done this before, having knowledgeable support makes all the difference.</p><p>Here are a few key points to consider:</p><ul><li>Location: Choose a neighborhood that fits your lifestyle and future plans.</li><li>Mortgage Terms: Understand your financing options to make informed decisions.</li><li>Additional Costs: Plan for expenses beyond the purchase price, like taxes, insurance, and maintenance.</li></ul><p>I’m here to guide you through every step of the process.</p><p>Let’s connect to discuss how I can help make your home buying experience seamless and successful!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nBuying a home is both an exciting adventure and one of life’s most significant\ninvestments.\n\nWhether it’s your first purchase or you’ve done this before, having\nknowledgeable support makes all the difference.\n\nHere are a few key points to consider:\n\n * Location: Choose a neighborhood that fits your lifestyle and future plans.\n * Mortgage Terms: Understand your financing options to make informed decisions.\n * Additional Costs: Plan for expenses beyond the purchase price, like taxes,\n insurance, and maintenance.\n\nI’m here to guide you through every step of the process.\n\nLet’s connect to discuss how I can help make your home buying experience\nseamless and successful!"
},
"type": "brand_flow_step"
},
{
"id": "febe451f-3949-4cc5-aa1c-cc412fd433b8",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "264f678c-df5b-401b-8a48-5588491ec8dc",
"is_automated": true,
"order": 5,
"title": "Unlock the Power of Pre-Approval",
"description": "Explain the importance of pre-approval.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "246fe58e-b372-4017-9799-8cb0567ef922",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Unlock the Power of Pre-Approval",
"goal": "",
"subject": "Unlock the Power of Pre-Approval",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Before starting your home search, one of the most important steps is establishing your purchasing power through pre-approval with a trusted lender.</p><p>Pre-approval not only helps you understand what homes fit your budget but also positions you as a serious buyer when it’s time to make an offer.</p><p>If you’d like to discuss the process or need recommendations, let’s connect soon. I’m here to help you every step of the way!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nBefore starting your home search, one of the most important steps is\nestablishing your purchasing power through pre-approval with a trusted lender.\n\nPre-approval not only helps you understand what homes fit your budget but also\npositions you as a serious buyer when it’s time to make an offer.\n\nIf you’d like to discuss the process or need recommendations, let’s connect\nsoon. I’m here to help you every step of the way!"
},
"type": "brand_flow_step"
},
{
"id": "f2d791e8-94ad-46a1-b8a6-0a787ffb589e",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "264f678c-df5b-401b-8a48-5588491ec8dc",
"is_automated": true,
"order": 6,
"title": "Stay Informed with Market Insights",
"description": "Keep clients updated with market insights.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "13411278-d0ee-46fc-bb3c-fe5f4d47c71e",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Stay Informed with Market Insights",
"goal": "",
"subject": "Stay Informed with Market Insights",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Searching for a home—whether online, through local ads, or by spotting listings as you drive by—often leads to questions about properties that catch your eye.</p><p>I’m here to provide you with the latest market insights and detailed information about homes that interest you, ensuring you’re equipped with everything you need to make informed decisions.</p><p>Let’s connect today to discuss how I can help with your search!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nSearching for a home—whether online, through local ads, or by spotting listings\nas you drive by—often leads to questions about properties that catch your eye.\n\nI’m here to provide you with the latest market insights and detailed information\nabout homes that interest you, ensuring you’re equipped with everything you need\nto make informed decisions.\n\nLet’s connect today to discuss how I can help with your search!"
},
"type": "brand_flow_step"
},
{
"id": "76985a8a-8bb3-4b99-93a3-4cb9da5928b6",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "264f678c-df5b-401b-8a48-5588491ec8dc",
"is_automated": true,
"order": 7,
"title": "Let’s Schedule a Home Viewing",
"description": "Encourage clients to schedule property viewings.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "1087f960-c282-465b-bbe5-cad66a68ce90",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Let’s Schedule a Home Viewing",
"goal": "",
"subject": "Let’s Schedule a Home Viewing",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Ready to take the next step in your home search?</p><p>If any of the homes we’ve discussed have caught your interest, now is a great time to schedule a viewing. Seeing a property in person can make all the difference in finding the right fit for you.</p><p>Let’s connect and find a time that works for your schedule—I’m here to make the process as seamless as possible!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nReady to take the next step in your home search?\n\nIf any of the homes we’ve discussed have caught your interest, now is a great\ntime to schedule a viewing. Seeing a property in person can make all the\ndifference in finding the right fit for you.\n\nLet’s connect and find a time that works for your schedule—I’m here to make the\nprocess as seamless as possible!"
},
"type": "brand_flow_step"
},
{
"id": "9ea9bff4-eca2-42b0-b0cf-6b3618979211",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "264f678c-df5b-401b-8a48-5588491ec8dc",
"is_automated": true,
"order": 8,
"title": "Is It Time to Update Your Pre-Approval?",
"description": "Remind clients to update pre-approval if needed.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "ac3eec63-acc9-4a39-b49b-2c947981d970",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Is It Time to Update Your Pre-Approval?",
"goal": "",
"subject": "Is It Time to Update Your Pre-Approval?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>If you’ve already been pre-approved, great job on taking that important step! I just wanted to check in to ensure your loan information is still up to date.</p><p>Significant changes—like new purchases, employment shifts, or updates to your credit score—can sometimes affect your pre-approval status.</p><p>If you have any questions or need guidance, feel free to reach out. I’m here to help you stay on track toward finding your perfect home!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nIf you’ve already been pre-approved, great job on taking that important step! I\njust wanted to check in to ensure your loan information is still up to date.\n\nSignificant changes—like new purchases, employment shifts, or updates to your\ncredit score—can sometimes affect your pre-approval status.\n\nIf you have any questions or need guidance, feel free to reach out. I’m here to\nhelp you stay on track toward finding your perfect home!"
},
"type": "brand_flow_step"
},
{
"id": "ceddad71-a4c8-4fa3-9f7c-979c51100b2f",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "264f678c-df5b-401b-8a48-5588491ec8dc",
"is_automated": true,
"order": 9,
"title": "Ready to Make Your Move?",
"description": "Guide clients through the offer-making process.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "e02e8f3e-15cf-4912-bdd4-9b3a4f80c589",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"name": "Ready to Make Your Move?",
"goal": "",
"subject": "Ready to Make Your Move?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>You’ve found the home of your dreams—congratulations!</p><p>The next step is making an offer, and I’m here to guide you through the process. With a dedicated real estate professional on your side, you can feel confident that your offer will be carefully crafted and effectively presented.</p><p>Let’s connect today to take this exciting step together!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nYou’ve found the home of your dreams—congratulations!\n\nThe next step is making an offer, and I’m here to guide you through the process.\nWith a dedicated real estate professional on your side, you can feel confident\nthat your offer will be carefully crafted and effectively presented.\n\nLet’s connect today to take this exciting step together!"
},
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": false
},
{
"id": "7788e469-5292-4131-adb2-a853a51e4303",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": null,
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Rechat Team Onboarding",
"description": "The process of on-boarding a new team member",
"steps": [
{
"id": "8060473c-b011-41c2-8c0a-e1420cb803ff",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": null,
"flow": "7788e469-5292-4131-adb2-a853a51e4303",
"is_automated": false,
"order": 1,
"title": "Create Rechat email",
"description": "Create a Rechat email address for the new guy to use in other services",
"event_type": "last_step_date",
"wait_for": {},
"wait_for_unit": "days",
"time": "10:00:00",
"event": {
"id": "2f56d8bc-395a-403a-b06c-52da8711e3b4",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": null,
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"title": "Create Rechat email",
"description": null,
"task_type": "Other",
"reminder": null,
"type": "brand_event"
},
"email": null,
"type": "brand_flow_step"
},
{
"id": "7afbb593-6296-4893-bbc9-aa5b0d523d64",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": null,
"flow": "7788e469-5292-4131-adb2-a853a51e4303",
"is_automated": true,
"order": 2,
"title": "Send them a test email",
"description": "Automatically send them a test email to make sure it's working",
"event_type": "last_step_date",
"wait_for": {
"days": 1
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "43ef657a-bcd1-44f8-8d35-50cd4dfc2e20",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Email Name",
"goal": "Email Goal",
"subject": "Email Subject",
"include_signature": true,
"body": "Email Body",
"type": "brand_email",
"text": "Email Body"
},
"type": "brand_flow_step"
},
{
"id": "5253d0ee-6f40-4e16-9a03-1a8aea7e2995",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": null,
"flow": "7788e469-5292-4131-adb2-a853a51e4303",
"is_automated": false,
"order": 3,
"title": "Demo of Rechat",
"description": "Dan gives a quick demo of the Rechat system and explains how it works",
"event_type": "last_step_date",
"wait_for": {
"days": 3
},
"wait_for_unit": "days",
"time": "14:00:00",
"event": {
"id": "a02ec6ac-1fb5-44c8-b721-6f40cbd65c63",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": null,
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"title": "Demo of Rechat",
"description": null,
"task_type": "Call",
"reminder": null,
"type": "brand_event"
},
"email": null,
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": true
}
],
"info": {
"count": 17,
"total": 0
}
}
Get brand flow by id ¶
Get brand flow by idGET/brands/:id/flows/:flow
Example URI
GET /brands/:id/flows/:flow
URI Parameters
- id
string
(required) Example: 7e399425-ec4b-4d0e-b2dc-0e0a36f48d55- flow
string
(required) Example: d522d226-9b97-4e83-8832-19b4a4568fb9- associations
string
(required) Example: brand_flow.steps,brand_flow_step.event,brand_flow_step.email
Response
200
Body
{
"code": "OK",
"data": {
"id": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "8 in 8",
"description": "8 in 8 Ninja Selling Flow",
"steps": [
{
"id": "2e10e1db-a9cf-45ed-875d-07e499d0af17",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"is_automated": true,
"order": 0,
"title": "Thank You for Considering Me!",
"description": "Express gratitude and introduce your unique value.",
"event_type": "last_step_date",
"wait_for": {
"days": 1
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "c9010de7-70bb-4b8b-970b-35903c66dfeb",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Thank You for Considering Me!",
"goal": "",
"subject": "Thank You for Considering Me!",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Thank you for considering me to list your home—it’s truly an honor! I want to share a few things that set me apart as a real estate professional:</p><ol><li>I’m always accessible and responsive—feel free to test me!</li><li>I provide regular updates on your home’s marketing progress to keep you informed every step of the way.</li><li>I’m fully committed to going above and beyond to sell your home efficiently and effectively.</li></ol><p>I’d love the opportunity to connect and discuss your goals. Let’s schedule a time to chat and get started!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nThank you for considering me to list your home—it’s truly an honor! I want to\nshare a few things that set me apart as a real estate professional:\n\n 1. I’m always accessible and responsive—feel free to test me!\n 2. I provide regular updates on your home’s marketing progress to keep you\n informed every step of the way.\n 3. I’m fully committed to going above and beyond to sell your home efficiently\n and effectively.\n\nI’d love the opportunity to connect and discuss your goals. Let’s schedule a\ntime to chat and get started!"
},
"type": "brand_flow_step"
},
{
"id": "705e081d-ba5d-45ae-b348-4722296070ac",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"is_automated": true,
"order": 1,
"title": "Can I Share Some Expert Selling Tips?",
"description": "Offer valuable insights to build trust and engagement.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "caceb1fc-c750-40e1-b678-5c3a93040d35",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Can I Share Some Expert Selling Tips?",
"goal": "",
"subject": "Can I Share Some Expert Selling Tips?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>I’d love the chance to share some of the best advice I’ve learned about successfully selling homes—it could make a big difference in your experience.</p><p>Are you available this afternoon? I have some time open and would be happy to connect. Let me know what works for you!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nI’d love the chance to share some of the best advice I’ve learned about\nsuccessfully selling homes—it could make a big difference in your experience.\n\nAre you available this afternoon? I have some time open and would be happy to\nconnect. Let me know what works for you!"
},
"type": "brand_flow_step"
},
{
"id": "9bd912ff-e378-4ec8-81d7-e349dca93f7d",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"is_automated": true,
"order": 2,
"title": "Let’s Discuss Your Home Selling Timeline",
"description": "Check in and align with the seller's goals.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "56c578ac-bc93-4245-b656-ada0416e5a66",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Let’s Discuss Your Home Selling Timeline",
"goal": "",
"subject": "Let’s Discuss Your Home Selling Timeline",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>It’s been a busy week, but I wanted to take a moment to check in with you. My goal is to ensure you get the best price for your home while aligning with your preferred timeline.</p><p>What does your ideal timeline look like? Are you hoping to move quickly, or do you have some flexibility?</p><p>Let me know—I’m here to help you navigate the process and make it as seamless as possible!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nIt’s been a busy week, but I wanted to take a moment to check in with you. My\ngoal is to ensure you get the best price for your home while aligning with your\npreferred timeline.\n\nWhat does your ideal timeline look like? Are you hoping to move quickly, or do\nyou have some flexibility?\n\nLet me know—I’m here to help you navigate the process and make it as seamless as\npossible!"
},
"type": "brand_flow_step"
},
{
"id": "c98d3f4b-4067-4971-8744-13d38e326e9c",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"is_automated": true,
"order": 3,
"title": "Highlighting Your Home's Best Feature",
"description": "Help sellers identify key selling points.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "650b2242-ef64-49f9-bee4-4eae5b2267d2",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Highlighting Your Home's Best Feature",
"goal": "",
"subject": "Highlighting Your Home's Best Feature",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>When selling your home, it’s helpful to think about what made you fall in love with it in the first place. Chances are, those same features will attract the right buyer—someone with similar tastes and values.</p><p>So, what do you think is your home’s best feature? Is it a spacious kitchen, a cozy living room, or a beautiful backyard?</p><p>Let’s connect to discuss how we can highlight those qualities and make your home stand out to the perfect buyer!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nWhen selling your home, it’s helpful to think about what made you fall in love\nwith it in the first place. Chances are, those same features will attract the\nright buyer—someone with similar tastes and values.\n\nSo, what do you think is your home’s best feature? Is it a spacious kitchen, a\ncozy living room, or a beautiful backyard?\n\nLet’s connect to discuss how we can highlight those qualities and make your home\nstand out to the perfect buyer!"
},
"type": "brand_flow_step"
},
{
"id": "b2a4c961-59dc-4de1-93df-031f8a1cc95a",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"is_automated": true,
"order": 4,
"title": "Ready When You Are",
"description": "Reassure sellers of your ongoing support.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "662e3a20-eb6b-4b4d-82e0-9c53f8ee695c",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Ready When You Are",
"goal": "",
"subject": "Ready When You Are",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>I noticed we haven’t had the chance to connect in the past couple of weeks, but I want you to know that I’m here, ready, and excited to help whenever you’re ready to move forward.</p><p>One thing about me—I don’t give up easily! I’m committed to supporting you every step of the way, but I also understand that timing is everything. Feel free to let me know when the time is right for you.</p><p>Looking forward to hearing from you!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nI noticed we haven’t had the chance to connect in the past couple of weeks, but\nI want you to know that I’m here, ready, and excited to help whenever you’re\nready to move forward.\n\nOne thing about me—I don’t give up easily! I’m committed to supporting you every\nstep of the way, but I also understand that timing is everything. Feel free to\nlet me know when the time is right for you.\n\nLooking forward to hearing from you!"
},
"type": "brand_flow_step"
},
{
"id": "c9846ebd-b10c-42f8-849b-20e83bf65d41",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": null,
"flow": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"is_automated": true,
"order": 5,
"title": "Are You Still Thinking About Selling?",
"description": "Reignite interest and offer support for next steps.",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "3b2d83fe-10f1-4da3-aa47-bd4b678c450c",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Are You Still Thinking About Selling?",
"goal": "",
"subject": "Are You Still Thinking About Selling?",
"include_signature": true,
"body": "<p>Hi {{recipient.first_name}},</p><p>Are you still considering selling your home this year?</p><p>If so, I’d love to connect and help you plan the best next steps to get started. Whether it’s setting the right price, preparing your home for the market, or exploring your selling options, I’m here to guide you through the process.</p><p>Let me know when you’re ready to chat—I’d be happy to help!</p>",
"type": "brand_email",
"text": "Hi {{recipient.first_name}},\n\nAre you still considering selling your home this year?\n\nIf so, I’d love to connect and help you plan the best next steps to get started.\nWhether it’s setting the right price, preparing your home for the market, or\nexploring your selling options, I’m here to guide you through the process.\n\nLet me know when you’re ready to chat—I’d be happy to help!"
},
"type": "brand_flow_step"
},
{
"id": "bfe36127-0c16-4165-8436-61e5e2c81b44",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"flow": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"is_automated": false,
"order": 7,
"title": "Meet with them to catch up",
"description": "Meet with them to catch up",
"event_type": "last_step_date",
"wait_for": {
"days": 10
},
"wait_for_unit": "days",
"time": "11:00:00",
"event": {
"id": "38dacf3f-2d65-43e3-9218-5ba1670aa145",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"title": "Meet with them to catch up",
"description": null,
"task_type": "In-Person Meeting",
"reminder": null,
"type": "brand_event"
},
"email": null,
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": false
}
}
Create a new brand flow ¶
Create a new brand flowPOST/brands/:id/flows
Example URI
POST /brands/:id/flows
URI Parameters
- id
string
(required) Example: 3b2a8d80-504a-4600-933e-1335ce26d0a2- associations
string
(required) Example: brand_flow.steps,brand_flow_step.event,brand_flow_step.email
Request
Body
{
"name": "Rechat Team Onboarding",
"description": "The process of on-boarding a new team member",
"steps": [
{
"title": "Create Rechat email",
"description": "Create a Rechat email address for the new guy to use in other services",
"wait_for": {
"days": 0
},
"time": "10:00:00",
"event_type": "last_step_date",
"event": {
"title": "Create Rechat email",
"task_type": "Other"
},
"order": 1
},
{
"title": "Send them a test email",
"description": "Automatically send them a test email to make sure it's working",
"wait_for": {
"days": 1
},
"time": "08:00:00",
"event_type": "last_step_date",
"email": "43ef657a-bcd1-44f8-8d35-50cd4dfc2e20",
"order": 2
},
{
"title": "Demo of Rechat",
"description": "Dan gives a quick demo of the Rechat system and explains how it works",
"wait_for": {
"days": 3
},
"time": "14:00:00",
"event_type": "last_step_date",
"event": {
"title": "Demo of Rechat",
"task_type": "Call"
},
"order": 3
}
]
}
Response
200
Body
{
"code": "OK",
"data": {
"id": "7788e469-5292-4131-adb2-a853a51e4303",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": null,
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Rechat Team Onboarding",
"description": "The process of on-boarding a new team member",
"steps": [
{
"id": "8060473c-b011-41c2-8c0a-e1420cb803ff",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": null,
"flow": "7788e469-5292-4131-adb2-a853a51e4303",
"is_automated": false,
"order": 1,
"title": "Create Rechat email",
"description": "Create a Rechat email address for the new guy to use in other services",
"event_type": "last_step_date",
"wait_for": {},
"wait_for_unit": "days",
"time": "10:00:00",
"event": {
"id": "2f56d8bc-395a-403a-b06c-52da8711e3b4",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": null,
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"title": "Create Rechat email",
"description": null,
"task_type": "Other",
"reminder": null,
"type": "brand_event"
},
"email": null,
"type": "brand_flow_step"
},
{
"id": "7afbb593-6296-4893-bbc9-aa5b0d523d64",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": null,
"flow": "7788e469-5292-4131-adb2-a853a51e4303",
"is_automated": true,
"order": 2,
"title": "Send them a test email",
"description": "Automatically send them a test email to make sure it's working",
"event_type": "last_step_date",
"wait_for": {
"days": 1
},
"wait_for_unit": "days",
"time": "08:00:00",
"event": null,
"email": {
"id": "43ef657a-bcd1-44f8-8d35-50cd4dfc2e20",
"created_at": 1760470034.238556,
"updated_at": null,
"deleted_at": null,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "Email Name",
"goal": "Email Goal",
"subject": "Email Subject",
"include_signature": true,
"body": "Email Body",
"type": "brand_email",
"text": "Email Body"
},
"type": "brand_flow_step"
},
{
"id": "5253d0ee-6f40-4e16-9a03-1a8aea7e2995",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": null,
"flow": "7788e469-5292-4131-adb2-a853a51e4303",
"is_automated": false,
"order": 3,
"title": "Demo of Rechat",
"description": "Dan gives a quick demo of the Rechat system and explains how it works",
"event_type": "last_step_date",
"wait_for": {
"days": 3
},
"wait_for_unit": "days",
"time": "14:00:00",
"event": {
"id": "a02ec6ac-1fb5-44c8-b721-6f40cbd65c63",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": null,
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"title": "Demo of Rechat",
"description": null,
"task_type": "Call",
"reminder": null,
"type": "brand_event"
},
"email": null,
"type": "brand_flow_step"
}
],
"active_flows": 0,
"type": "brand_flow",
"is_editable": true
}
}
Edit a brand flow ¶
Edit a brand flowPUT/brands/:id/flows/:flow
Example URI
PUT /brands/:id/flows/:flow
URI Parameters
- id
string
(required) Example: 3b2a8d80-504a-4600-933e-1335ce26d0a2- flow
string
(required) Example: d522d226-9b97-4e83-8832-19b4a4568fb9
Request
Body
{
"name": "8 in 8",
"description": "8 in 8 Ninja Selling Flow"
}
Response
200
Body
{
"code": "OK",
"data": {
"id": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80a227b2-29a0-11e7-b636-e4a7a08e15d4",
"updated_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"name": "8 in 8",
"description": "8 in 8 Ninja Selling Flow",
"active_flows": 0,
"type": "brand_flow",
"is_editable": true
}
}
Delete a brand flow ¶
Delete a brand flowDELETE/brands/:id/flows/:flow
Example URI
DELETE /brands/:id/flows/:flow
URI Parameters
- id
string
(required) Example: 3b2a8d80-504a-4600-933e-1335ce26d0a2- flow
string
(required) Example: d522d226-9b97-4e83-8832-19b4a4568fb9
Response
204
Add a new step to a brand flow ¶
Add a new step to a brand flowPOST/brands/:id/flows/:flow/steps
Example URI
POST /brands/:id/flows/:flow/steps
URI Parameters
- id
string
(required) Example: 3b2a8d80-504a-4600-933e-1335ce26d0a2- flow
string
(required) Example: d522d226-9b97-4e83-8832-19b4a4568fb9- associations
string
(required) Example: brand_flow_step.event,brand_flow_step.email
Request
Body
{
"title": "Call to check on them",
"description": "Call to check on them",
"wait_for": {
"days": 7
},
"time": "10:00:00",
"event_type": "last_step_date",
"order": 7,
"event": {
"title": "Call to check on them",
"task_type": "Call"
}
}
Response
200
Body
{
"code": "OK",
"data": {
"id": "bfe36127-0c16-4165-8436-61e5e2c81b44",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": null,
"flow": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"is_automated": false,
"order": 7,
"title": "Call to check on them",
"description": "Call to check on them",
"event_type": "last_step_date",
"wait_for": {
"days": 7
},
"wait_for_unit": "days",
"time": "10:00:00",
"event": {
"id": "38dacf3f-2d65-43e3-9218-5ba1670aa145",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": null,
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"title": "Call to check on them",
"description": null,
"task_type": "Call",
"reminder": null,
"type": "brand_event"
},
"email": null,
"type": "brand_flow_step"
}
}
Edit a brand flow step ¶
Edit a brand flow stepPUT/brands/:id/flows/:flow/steps/:step
Example URI
PUT /brands/:id/flows/:flow/steps/:step
URI Parameters
- id
string
(required) Example: 3b2a8d80-504a-4600-933e-1335ce26d0a2- flow
string
(required) Example: d522d226-9b97-4e83-8832-19b4a4568fb9- step
string
(required) Example: bfe36127-0c16-4165-8436-61e5e2c81b44- associations
string
(required) Example: brand_flow_step.event,brand_flow_step.email
Request
Body
{
"title": "Meet with them to catch up",
"description": "Meet with them to catch up",
"wait_for": {
"days": 10
},
"time": "11:00:00",
"event_type": "last_step_date",
"event": {
"title": "Meet with them to catch up",
"task_type": "In-Person Meeting"
}
}
Response
200
Body
{
"code": "OK",
"data": {
"id": "bfe36127-0c16-4165-8436-61e5e2c81b44",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"flow": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"is_automated": false,
"order": 7,
"title": "Meet with them to catch up",
"description": "Meet with them to catch up",
"event_type": "last_step_date",
"wait_for": {
"days": 10
},
"wait_for_unit": "days",
"time": "11:00:00",
"event": {
"id": "38dacf3f-2d65-43e3-9218-5ba1670aa145",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"created_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"updated_by": "80500eb3-c745-440b-a692-0badd5ff5550",
"brand": "3b2a8d80-504a-4600-933e-1335ce26d0a2",
"title": "Meet with them to catch up",
"description": null,
"task_type": "In-Person Meeting",
"reminder": null,
"type": "brand_event"
},
"email": null,
"type": "brand_flow_step"
}
}
Delete a brand flow step ¶
Delete a brand flow stepDELETE/brands/:id/flows/:flow/steps/:step
Example URI
DELETE /brands/:id/flows/:flow/steps/:step
URI Parameters
- id
string
(required) Example: 3b2a8d80-504a-4600-933e-1335ce26d0a2- flow
string
(required) Example: d522d226-9b97-4e83-8832-19b4a4568fb9- step
string
(required) Example: bfe36127-0c16-4165-8436-61e5e2c81b44
Response
204
Enroll contacts to a flow ¶
Enroll contacts to a flowPOST/crm/flows
Example URI
POST /crm/flows
URI Parameters
- associations
string
(required) Example: flow.contact,flow_step.crm_task,flow_step.email
Request
Body
{
"origin": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"starts_at": 1760470036.72,
"steps": [
"2e10e1db-a9cf-45ed-875d-07e499d0af17",
"705e081d-ba5d-45ae-b348-4722296070ac",
"9bd912ff-e378-4ec8-81d7-e349dca93f7d",
"c98d3f4b-4067-4971-8744-13d38e326e9c",
"b2a4c961-59dc-4de1-93df-031f8a1cc95a",
"c9846ebd-b10c-42f8-849b-20e83bf65d41"
],
"contacts": {
"ids": [
"f2962fc2-d7e5-462c-ac04-9820cf762c54"
]
}
}
Response
200
Body
{
"code": "OK",
"data": [
{
"id": "019a6408-0d91-4849-a295-fa3e7a3d86fa",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"deleted_at": null,
"created_by": "c890d9f2-98c2-4ad8-a881-193e6118154e",
"updated_by": "c890d9f2-98c2-4ad8-a881-193e6118154e",
"deleted_by": null,
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"origin_id": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"name": "8 in 8",
"description": "8 in 8 Ninja Selling Flow",
"starts_at": 1760400000,
"contact": {
"id": "f2962fc2-d7e5-462c-ac04-9820cf762c54",
"display_name": "Gholi",
"partner_name": null,
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"brand_id": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"user_id": "c890d9f2-98c2-4ad8-a881-193e6118154e",
"sort_field": "Gholi",
"last_touch": null,
"last_touch_action": null,
"next_touch": null,
"touch_freq": null,
"ios_address_book_id": null,
"android_address_book_id": null,
"created_at": 1760470036.691017,
"updated_at": 1760470034.238556,
"deleted_at": null,
"created_for": "direct_request",
"updated_for": "direct_request",
"deleted_for": null,
"title": null,
"first_name": "Gholi",
"partner_first_name": null,
"middle_name": null,
"last_name": null,
"partner_last_name": null,
"marketing_name": null,
"nickname": null,
"email": "[email protected]",
"primary_email": "[email protected]",
"emails": [
"[email protected]"
],
"parked": false,
"partner_email": null,
"phone_number": null,
"primary_phone_number": null,
"phone_numbers": null,
"company": null,
"birthday": null,
"profile_image_url": null,
"cover_image_url": null,
"job_title": null,
"source_type": null,
"source": null,
"website": null,
"tags": null,
"address": null,
"type": "contact"
},
"last_step_date": 1760400000,
"steps": [
{
"id": "3fd9031a-aa2b-40fc-9416-a9c400ca7031",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"deleted_at": null,
"created_by": "c890d9f2-98c2-4ad8-a881-193e6118154e",
"updated_by": null,
"deleted_by": null,
"flow": "019a6408-0d91-4849-a295-fa3e7a3d86fa",
"campaign": null,
"crm_task": null,
"executed_at": null,
"failed_at": null,
"failure": null,
"type": "flow_step",
"email": null
}
],
"type": "flow"
}
],
"info": {
"count": 1,
"total": 0
}
}
Stop a flow ¶
Stop a flowDELETE/crm/flows/:id
Example URI
DELETE /crm/flows/:id
URI Parameters
- id
string
(required) Example: 019a6408-0d91-4849-a295-fa3e7a3d86fa
Response
204
Get flows a contact is enrolled to ¶
Get flows a contact is enrolled toGET/contacts/:id
Example URI
GET /contacts/:id
URI Parameters
- id
string
(required) Example: f2962fc2-d7e5-462c-ac04-9820cf762c54- associations
string
(required) Example: contact.flows,flow_step.crm_task,flow_step.email
Response
200
Body
{
"code": "OK",
"data": {
"id": "f2962fc2-d7e5-462c-ac04-9820cf762c54",
"display_name": "Gholi",
"partner_name": null,
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"brand_id": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"user_id": "c890d9f2-98c2-4ad8-a881-193e6118154e",
"sort_field": "Gholi",
"last_touch": null,
"last_touch_action": null,
"next_touch": null,
"touch_freq": null,
"ios_address_book_id": null,
"android_address_book_id": null,
"created_at": 1760470036.691017,
"updated_at": 1760470034.238556,
"deleted_at": null,
"created_for": "direct_request",
"updated_for": "direct_request",
"deleted_for": null,
"title": null,
"first_name": "Gholi",
"partner_first_name": null,
"middle_name": null,
"last_name": null,
"partner_last_name": null,
"marketing_name": null,
"nickname": null,
"email": "[email protected]",
"primary_email": "[email protected]",
"emails": [
"[email protected]"
],
"parked": false,
"partner_email": null,
"phone_number": null,
"primary_phone_number": null,
"phone_numbers": null,
"company": null,
"birthday": null,
"profile_image_url": null,
"cover_image_url": null,
"job_title": null,
"source_type": null,
"source": null,
"website": null,
"tags": null,
"address": null,
"flows": [
{
"id": "019a6408-0d91-4849-a295-fa3e7a3d86fa",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"deleted_at": null,
"created_by": "c890d9f2-98c2-4ad8-a881-193e6118154e",
"updated_by": "c890d9f2-98c2-4ad8-a881-193e6118154e",
"deleted_by": null,
"brand": "7e399425-ec4b-4d0e-b2dc-0e0a36f48d55",
"origin_id": "d522d226-9b97-4e83-8832-19b4a4568fb9",
"name": "8 in 8",
"description": "8 in 8 Ninja Selling Flow",
"starts_at": 1760400000,
"last_step_date": 1760400000,
"steps": [
{
"id": "3fd9031a-aa2b-40fc-9416-a9c400ca7031",
"created_at": 1760470034.238556,
"updated_at": 1760470034.238556,
"deleted_at": null,
"created_by": "c890d9f2-98c2-4ad8-a881-193e6118154e",
"updated_by": null,
"deleted_by": null,
"flow": "019a6408-0d91-4849-a295-fa3e7a3d86fa",
"campaign": null,
"crm_task": null,
"executed_at": null,
"failed_at": null,
"failure": null,
"type": "flow_step",
"email": null
}
],
"type": "flow"
}
],
"type": "contact"
}
}