Getting Started with Marketing Cloud Growth and Advanced, A Guide for Account Engagement Users

Erin Duncan

Getting Started with Marketing Cloud Growth and Advanced, A Guide for Account Engagement Users

Product Note: Marketing Cloud Growth and Advanced are editions of Marketing Cloud Next and have also been referred to as Agentforce Marketing. If you are an Account Engagement User, you’ve likely been hearing for months that Account Engagement Orgs can get free access to Marketing Cloud Growth and Advanced Edition with their current contract. There […]
Read moreView all blogs
Aligning Sales, Marketing, and Customer Success for Seamless Handoffs

Christina Anderson

Aligning Sales, Marketing, and Customer Success for Seamless Handoffs

Clunky handoffs between marketing, sales, and customer success are one of the most common ways teams lose momentum, drop leads, and tank trust—costing you customers. Whether it’s a hot prospect that never makes it into a rep’s queue or a new customer who has to re-explain everything they shared in discovery, these gaps compound. Which […]
Read moreView all blogs
12 Statistics Every GTM Leader Should Pay Attention to for Sustainable Growth

Sarah Kloth

12 Statistics Every GTM Leader Should Pay Attention to for Sustainable Growth

In today’s modern era, where customer expectations are rising, new technology is coming out every day, and data is living among disparate systems, the key to achieving sustainable growth is proving to be about how your teams, data, and technology are connected and coordinated across the customer lifecycle.  Why? Internal misalignment among people, processes, and […]
Read moreView all blogs
The Ultimate Guide to Approaching Agentforce & Data Cloud

Heather Rinke

The Ultimate Guide to Approaching Agentforce & Data Cloud

If you’re exploring Agentforce or Data Cloud, but feel unsure where to start—or how to ensure real outcomes—you’re not alone. In our recent webinar, “A No-Nonsense Guide to Launching Agentforce & Data Cloud,” we heard from marketing, RevOps pros, admins, and IT professionals across industries who are in the same boat. The good news? You […]
Read moreView all blogs
Everything to Know About the Marketing Cloud Next Email Builder

Erin Duncan

Everything to Know About the Marketing Cloud Next Email Builder

Product Note: Marketing Cloud Growth and Advanced are editions of Marketing Cloud Next and have also been referred to as Agentforce Marketing. Marketing Cloud Next offers an intuitive, drag-and-drop email builder packed with smart features that streamline the email creation process. In this blog post, we’ll walk through the key features and functionality of the […]
Read moreView all blogs
The Proven Approach to Create Your AI Roadmap for Meaningful Impact

Lauren Noonan

The Proven Approach to Create Your AI Roadmap for Meaningful Impact

If you’re feeling overwhelmed with AI at your organization, you’re not alone. In fact, during our recent webinar, AI Roadmap: The Strategy to Drive Growth with AI, 85% of attendees said they were either leading or supporting AI initiatives at their organization. And 70% of them admitted they had more questions than answers. Therefore, we’re […]
Read moreView all blogs

Get Out of My Dreams Head and Into My Car Diagram

If you’ve ever found yourself singing Billy Ocean songs to yourself as you tried to explain a Data 360 data model using only your hands and a determined facial expression, this post is for you! Data Model Objects (DMOs) and their relationships live in Data 360 in a way that’s technically documented, but not exactly easy to look at. Sure, the Data Model tab gives us some cute bubbles to look at, but it’s not exactly easy to navigate or dive into how individual fields are mapped.

Visualizing data model objects fields

Enter Diagramforce, a free tool for visualizing Salesforce data models as clean, shareable diagrams. The tricky part is getting from the data model from only living in Data 360 (and your head) and into a usable JSON file that Diagramforce can understand. I recently went through this process for a client project and came across several wrong ways to do this before finally landing on a solution. Thankfully it’s one that is easily repeatable and works well as a first CLI project.

Why Use Diagramforce At All?

When I first asked my client if they had any documentation or diagrams showing how each of the DMOs in their system were connected, they pointed me towards the Data Model graph mode, where we quickly discovered that we can’t actually get the type of granular information we’re looking for from that visual. Don’t get me wrong, I do appreciate the high level overview of how each DMO is related to one another, but when I need to get a Data 360 specialist to dive into some field mapping issues with me, it’s not exactly a walk in the park to investigate if you don’t know the data model first hand. 

  • Diagramming existing DMOs and relationships helps with future discovery documentation and knowledge transfers in the event that someone leaves the organization
  • A visual representation of a data model is a lot easier for most people to understand, especially in comparison to a table of object API & field names
  • Seeing your existing data model will help with change management in the future by allowing you to avoid breaking something you didn’t know was connected

Required Tools to Get Started

This should come as no surprise, but there are a few tools and access points that you’ll want to make sure you have before you dive into this project. 

  • Salesforce CLI installed and authenticated to the target org (see below for more information on this process)
  • PowerShell (this walkthrough uses it, but the same logic works in bash if that’s your preference)
  • API access to the org’s DMOs — more on this below

All the Small Wrong Things

Before we dive into the way I made this work, you should know I didn’t get this right on the first or second try. Initially I wanted to retrieve the DMOs as metadata, the same way you’d retrieve a standard component using the CLI. Unfortunately, DataModelObject isn’t a registered metadata type in the CLI registry, so that failed.

Next, I tried to exchange the CLI’s API session token with a Data 360 tenant token, but that didn’t pan out either. The standard CLI session token doesn’t have the right OAuth scope needed for the exchange, and setting up a dedicated Connected App just for a single diagram felt like a lot of overhead for this task.

What Finally Worked

Although you won’t find the DMOs in your standard Object Manager, they are ordinary sObjects under the hood and answer to standard REST API calls the way any standard Salesforce object would. You’ll recognize them by the __dlm suffix. This means we can get to them and their relationships through the regular REST API describe endpoint, using whatever Salesforce org is specified in the CLI. The complete steps for this process are broken down for ease of reference below.

Authenticate Your Salesforce Org

You can connect Salesforce CLI to multiple Developer Orgs, Sandboxes, or Production, each one taking on their own Org Alias. You’re also able to set up a “Default” org that will be used in any commands that do not specify which connected org to use. The commands below will allow you to set an Org Alias, login, and set an org as the default org if desired.

Authentication in Production or Developer Orgs

sf org login web –alias my-org –set-default

Sandbox Authentication Script:

sf org login web –instance-url https://test.salesforce.com –alias my-sandbox –set-default

Edit the my-sandbox or my-org text to set your org alias. Try and keep this something short and memorable, if you add multiple orgs to the CLI you’ll need to reference this pretty regularly. The –set-default tag is optional,  and if you use it this org will be used as the default org when none is specified in a command. 

If your org is using Salesforce Enhanced Domains, you’re able to use the –instance-url command and include the login URL for your Enhanced Domain (checkout the Sandbox Authentication script for an example of this).

Create A Dedicated Folder

We’ll need to point PowerShell to a specific folder to find the scripts we’ll be running in future steps. This folder is also where the scripts will output documentation once they have finished running. Once you’ve created the folder, you’ll need to copy the path from the top of the File Explorer window, as shown below.

Download the Scripts for Extracting and Formatting

This method relies on 2 different scripts, one to extract the data from Data 360, and another to format it appropriately for Diagramforce. You’ll need both of these files stored in the folder you just created in the previous step. Once you’ve downloaded the scripts, you’ll need to replace any of the YourOrgAlias text with whatever org alias you entered when you authenticated the org earlier in this process. Without updating this, the script won’t know where it needs to pull the data from.

View the “Get Data 360 DMOs Script” here

View the “Convert to JSON Script” here.

Set Your Directory in PowerShell

Now that we have our folder created and our scripts saved, we need to tell PowerShell where it should look when we’re executing our next sets of commands. Inside of powershell, type the following:

cd [paste the file path we copied earlier here]

The “cd” command tells the system to change the directory to whatever file path comes afterwards, so for my example, I’d enter:

cd C:\Users\categ\DataCloud Diagrams

Enable Script Execution in PowerShell

By default, PowerShell blocks custom .ps1 scripts so we’ll need to run a command to bypass this restriction. This command only works to bypass things temporarily, so next time you go to run these scripts you’ll need to execute the same command.

Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass

Extract DMOs from Data 360

Now that your Salesforce org is authenticated, we’re ready to extract the DMOs from Data 360. Copy and paste the command below, being sure to replace the YourOrgAlias with whatever you set as your org alias in the previous steps.

.\Get-DataCloudDMOs.ps1 -TargetOrg YourOrgAlias

Getting it Ready for Diagramforce

Here’s where I got tripped up the most: you can’t upload the JSON file from the first script into Diagramforce as-is because it’s expecting a specific cell-graph structure. This structure helps to map out shapes with positions and ports, as well as the connections between them, and helps out with layout metadata. Rather than trying to build the structure blind, I was able to reference the JSON spec on Diagramforce’s GitHub and get the right structure for my data. You can run this script in the CLI with the following command:

.\Convert-DMOsToDiagramforce.ps1

This script reads the dmo-model.json stored in the same folder and creates a  diagramforce-import.json file that can be imported into Diagramforce successfully. Head over to Diagramforce and use File > Import JSON to import the diagramforce-import file. Once it’s loaded, you’ll be able to see all of the DMOs in your org, along with the relationships between them. You’ll likely need to spend some time organizing them and cleaning up some of the relationship names, but the end result is an excellent representation of the data model.

Instructions for converting data models into Diagramforce format

If you get a version mismatch warning on import, double check the appVersion value in the script against whatever the current Diagramforce release expects. You can find this information by checking out the GitHub repository for Diagramforce and checking what the most recent version of the platform is.

GitHub page with notes for Diagramforce

Things to Keep in Mind…

This is absolutely a first pass and not meant to be a finished product, but a step towards more accurate and usable documentation of Data 360. I also fought with 2 different LLMs to figure out the right approach and scripting to get this to work, but the code has been reviewed and this method has been tested in a few different orgs. A few other things worth mentioning:

  • Diagramforce is a great tool, but the layout is still a simple drag and drop grid. You’ll likely need to spend some time rearranging after your import to make sure it’s legible.
  • The scripts here all use “YourOrgAlias” as a placeholder. Make sure to update that text to match whatever your actual Org Alias is prior to running.
  • If your org has multiple data spaces, you will need to filter the DMO list accordingly before converting – otherwise you’ll get a diagram of hot dog fingers everything, everywhere, all at once, defeating the purpose.
  • Relationship names may not be end user friendly as they’re coming directly from the describe call in the script. You may want to relabel a few of them after import for clean documentation.

Another Data 360 Org? Time to Diagram!

If you’re working in Data 360 orgs regularly, it’s worth keeping both scripts (the extractor and the converter) in your toolkit rather than rebuilding them from scratch every time. Run the extractor whenever you land in a new org, run the converter, import into Diagramforce, and you’ve got a shareable diagram in less time than it used to take to attempt explaining the model verbally. Just be sure to update the “YourOrgAlias” name wherever it appears in the script so that it’s pointing to the right Salesforce org at runtime and you’ll be good to go.

Got a cleaner way to handle the layout step, or run into a different Data 360 quirk along the way? Drop it in the comments — I’d love to see how others are tackling this.

A broken CRM seller experience acts like a tax on your pipeline, dragging down deal velocity and rendering new AI investments practically useless. Identifying the friction is easy, but executing the cure is where most teams get stuck. So, how do you transition from diagnostic firefighting to actual, scalable optimization? The answer isn’t a full rebuild, it’s a Seller Experience Audit. It pinpoints exactly where your system is broken, and then applies a practical CRM optimization framework that targets high-friction areas first, proves fast ROI, and builds momentum.

To help you map this out, we’ve broken down the core architecture from our full 2026 CRM Optimization Playbook. Here is the exact 6-step roadmap to transform your CRM from a roadblock into a high-velocity revenue engine.

Download the 2026 CRM Optimization playbook.

Groundwork: Uncovering Where the Friction Lives

Before you change a single validation rule or field setting, you have to gather your boots-on-the-ground intelligence. A successful CRM optimization framework relies on two distinct discovery exercises:

  • Walk your funnel like a customer: Take a handful of recent closed-won accounts and map every single technical and human touchpoint. Did the buyer experience a massive lag between marketing handoff and sales outreach? Did they have to repeat their pain points? Funnel walkthroughs surface your biggest gaps faster than any dashboard.
  • Shadow your sellers: Sit down with your sellers and watch them navigate a typical day. Ask the direct questions: Where are you clicking too much? What fields feel completely pointless? What context are you keeping in a shadow spreadsheet because the CRM is too slow? When you design the process for the front line, you have to hear it from the front line.

The 6-Step CRM Optimization Framework

Once you know where the drag lives, work through these six execution steps in order. 

1. Define Stages and Strict Ownership

Alignment is the bedrock of any CRM optimization framework. Get your Sales, Marketing, and Customer Success leaders in one room to establish absolute clarity around buyer journey milestones.

Define exactly what qualifies a lead at each stage, and more importantly, who owns the record at every handoff. Clear operational boundaries stop lead leakage before it starts.

Another key team to align with is IT. For alignment to actually be actioned, data must be able to flow seamlessly from one department to the next to provide the right context. That data can sometimes be owned in systems where IT needs to collaborate for access. Therefore, ensuring that all teams are aligned ahead of time will help to make the execution easier.

“Bringing IT into the conversation and creating a collaborative relationship across departments when defining stages and strict ownership is critical. Friction when unlocking your data can often be due to department silos rather than just technology silos.” 

– Austin Frink, Director, Data Technologies, Sercante l Trilliad

2. Cleanse and Trim the Fields

Audit your current fields and page layouts with one brutal question: Does this field help a rep move a deal forward right now? If a seller is in early discovery, they shouldn’t be forced to look at 40 blank legal or billing fields. Use conditional visibility to show the right fields at the right deal stage. The answer to “can we track that?” is always yes, but the smarter question is “should we?”

3. Automate the Administrative Burden

Identify the repetitive, manual tasks that drain your team’s energy. Logging basic activity, routing leads, progressing stages, and triggering standard follow-ups. Let your system handle these based on real-time buyer engagement. This is what the technology was built to do. Don’t pay premium seller salaries for manual data entry.

4. Close the Handoff Gap

Map out the exact second a lead passes from marketing to sales. Ensure all marketing context, intent signals, and engagement history travel with the record. Fixing this single point of friction rebuilds cross-functional trust between Marketing and Sales faster than almost anything else.

5. Layer in AI and Advanced Automation

Now that the foundation holds, your data is clean, and your workflows are automated, AI becomes an incredible asset rather than a liability. This is where you can confidently execute an Agentforce or agentic roadmap. Start with a single high-friction use case, like auto-captured activity, next-best-action prompts, or signal-based prioritization—prove the time savings, and expand. For additional insight on the strategic approach to creating an effective AI roadmap, check out Jenna Packard’s blog, The AI Roadmap for Enterprise: A Framework for Identifying Value-Driven AI Use Cases.

6. Build Continuous Feedback Loops

CRM optimization is a continuous rhythm, not a one-time project. Establish a monthly cadence where your RevOps, Sales Ops, or Marketing Ops teams shadow an account executive to look for new layout errors, system speed bumps, or shadow spreadsheets.

Framework StepCore FocusOutcome
Define OwnershipSLA & Handoff AlignmentEliminates lead leakage
Cleanse & TrimUI/UX MinimalizationHigh CRM adoption & clean data
Automate AdminWorkflow AutomationReclaims hours of selling time
Close the GapData Context SyncingBridges the Marketing Visibility Gap
Layer AIAgentic & Generative ToolsMassive operational leverage
Feedback LoopsContinuous ShadowingLong-term technical scalability

 Getting Started with Your CRM Optimization

Every technical change in this framework directly drives a business outcome. That is how you justify the work to leadership, and it’s how you ensure the changes actually stick. The ultimate goal is simple: transition your tech stack from a static tracking system to an active revenue producer.

But if the friction has been there so long that it has just become background noise, it can be hard to know which of these steps to prioritize first.

That is exactly why the Sercante l Trilliad team guides revenue teams through a structured Seller Experience Audit. We assess your systems, data quality, and cross-functional handoffs to turn guesswork into a prioritized, impact-driven roadmap tailored to this exact CRM optimization framework. Reach out to the Sercante l Trilliad team to schedule your Seller Experience Audit.

Contact the Sercante | Trilliad team to get your CRM Seller Experience Audit.

Accelerating Marketing Automation with Pre-Built Salesforce Flow Templates

Building effective marketing automation takes time, and staring at a blank canvas can often delay your first campaign. With Agentforce Marketing (aka Marketing Cloud Next), you can bypass those early hurdles with six out-of-the-box flow templates designed to accelerate your path from idea to execution.

Instead of building common campaign patterns from scratch, you can now select a proven framework, customize it to your business needs, and launch faster. These templates don’t replace your marketing strategy—they accelerate it, providing the structure and foundational assets you need to focus on what truly differentiates your brand: messaging, personalization, and customer experience.

Why Flow Templates Matter for Marketers

Marketing automation success is not just about sending emails. It’s about creating relevant, timely experiences that guide customers through their relationship with a brand.

These flow templates help marketers:

  • Reduce implementation time: Launch common marketing journeys faster.
  • Create consistency across campaigns: Follow proven automation patterns.
  • Focus on what matters: Spend less time building and more time optimizing.

For organizations adopting Agentforce Marketing, these templates spark a critical shift in focus: What does this experience need to accomplish now?

Register for the Agentforce Marketing Flow Fundamentals Workshop.

Learn how to build your own Flows in Agentforce Marketing with this expert-led workshop.  Register here.

How to Access the New Flow Templates

The new templates are available directly within the campaign creation experience. 

To access them:

  • Open the Marketing app
  • Navigate to Campaigns
  • Select Add New to create a campaign
  • Fill out details on the campaign creation pop-up window
  • Enter your campaign details and check the “Active” box

Once in the campaign workspace, look to the  “Let’s build your campaign” section, scroll down to “Need a faster start? Browse templates.” 

Selecting Browse Templates opens up the available Salesforce-created flow templates. 

From here, marketers can select the template that best matches their campaign goal and use it as the foundation for their automation. 

After selecting the template, you’ll be guided through the configuration process, including automation settings within the flow template itself. 

Creating a new automation and choosing which template you want.

Inside the Templates: Six Salesforce-Designed Marketing Journeys

1. Birthday Promotional Email Automation Template

What It Does:

The birthday promotional email automation template helps organizations celebrate customers while encouraging repeat purchases through a personalized promotional experience.

This template for organizations looking to create a simple but effective customer engagement moment to:

  • Recognize a customer’s birthday
  • Provide an offer
  • Encourage action before the promotion expires

Inside the Flow:

This is a segment-triggered flow. The template includes:

  • Birthday offer email
  • Birthday offer reminder email

Why It Matters:

Birthday campaigns are great examples of personalized lifecycle marketing. They create a meaningful customer touchpoint while encouraging engagement. This template removes the need to build the basic journey structure manually, allowing marketers to focus on the offer, branding, and customer experience.

Pro-Tip: Before activating a birthday automation, validate that your customer birthday data is accurate and consistently maintained. Personalization is only effective when the underlying data is reliable.

Setting up a birthday automation.

2. Lead Capture Follow-Up Email Automation Template

What It Does:

The lead capture follow-up email automation template helps organizations convert new leads into engaged prospects through an automated welcome and nurture experience. This is one of the templates I expect many B2B organizations will recognize the value of because lead follow-up is one of the most common marketing automation use cases.

Inside the Flow:

This is an event-triggered flow. The template includes:

  • Lead capture welcome email
  • Lead capture product email
  • Lead capture brand value proposition email

Why It Matters:

Many organizations invest heavily in generating leads but struggle with what happens next. This template creates an immediate, consistent follow-up experience by helping organizations welcome new prospects, introduce their brand, highlight products or services, and provide valuable resources.

Pro-Tip: This is one of the templates I would recommend reviewing early during an Agentforce Marketing implementation. It provides a strong foundation for lead nurturing while allowing marketers to focus on content strategy and personalization.

Setting up an automation event-triggered flow.

3. Reengagement Email Automation Template

What It Does:

The reengagement email automation template helps organizations reconnect with inactive customers or leads. Instead of continuing to send the same messaging to disengaged audiences, this template creates an intentional journey designed to win customers back.

Inside the Flow:

This is a segment-triggered flow. The template includes:

  • “We miss you” email
  • Benefits and social proof email
  • Second discount offer/reminder email
  • Final call to action email

Why It Matters:

A mature marketing strategy is not only about acquiring new customers. It’s also about understanding and improving engagement with existing audiences. This template helps marketers reconnect with inactive contacts using incentives strategically, reduce unnecessary communication, and create clear exit paths.

Pro-Tip: Define what “inactive” means before activating the flow. A customer inactive for 30 days may require a different approach than someone who has not been engaged in over a year.

Setting up a template that is meant to reconnect with inactive customers or leads.

4. Event Email Automation Template

What It Does: 

The event email automation template helps marketers manage communications before and after webinars, conferences, product launches, and other events. Successful events require more than registration emails. Customers need reminders, confirmations, and meaningful follow-up.

Inside the Flow: 

This is a segment-triggered flow. The template includes:

  • Event registration confirmation
  • Event one-week reminder
  • Event one-day reminder
  • Event attended follow-up
  • Event did not attend follow-up

Why It Matters: 

This template extends the customer experience beyond attendance. We also recommend using Campaign Member and Campaign Member Status to track attendance, creating strong alignment between marketing engagement and CRM reporting.

Pro-Tip: Many teams focus heavily on driving registrations, but underestimate the value of post-event communication. The follow-up experience is often where the strongest conversion opportunities happen.

Setting up an event email automation template.

5. Nurture Campaign Email Automation Template

What It Does: 

The nurture campaign email automation template helps organizations build ongoing relationships with leads through a structured engagement journey. This is especially valuable for B2B organizations with longer buying cycles, where prospects need education and trust-building before making a decision.

Inside the Flow: 

This is a segment-triggered flow. The template includes:

  • Welcome to our brand
  • Exclusive event or content invitation
  • Exclusive offer ends soon

Why It Matters: 

Effective nurturing is about responding to customer behavior, not just following a schedule. The built-in decision paths help ensure that engaged prospects do not continue receiving irrelevant communications.

Pro-Tip: Define your entry criteria, engagement signals, and exit strategy before launching a nurture journey. The technology enables automation, but your strategic rules drive its success.

Setting up a nurture campaign email automation template.

6. Signup Form Automation Template

What It Does: The signup form template walks the user through what is needed to build a new form, such as Data Source, Fields, Form Content, and an optional Landing Page. This template also captures consent for communications immediately upon form submission.

Inside the Flow: This is an event-triggered flow. The journey follows this sequence:

  1. Customer submits form
  2. Create record
  3. Create consent request
  4. End flow
Setting up a signup form automation template.

During configuration, marketers define the record type created (options include Lead, Contact, or Account), the marketing channel, the communication channel (Email or SMS), the consent status, and specific record type settings.

Reviewing and finalizing the form.

Why It Matters: Strong marketing automation starts with strong data practices. This template connects lead generation, data creation, and consent management into one unified, automated process.

Pro-Tip: Before activating this flow, confirm your organization’s data model and consent strategy. Decide what records should be created, what information sales needs, and how communication preferences should be managed.

For more tips on building Agentforce Marketing Forms, check out the Building Better Form Flows with The New Agentforce Marketing Flow Template blog post. 

Automation event-triggered flow template.

Summary of Flows 

Flow NameTrigger TypePrimary Benefit
Birthday Promotional Email AutomationSegmentCelebrates customers and encourages repeat purchases with personalized offers.
Lead Capture Follow-Up Email AutomationEventConverts new leads into engaged prospects via automated welcome and nurture journeys.
Reengagement Email AutomationSegmentReconnects with inactive customers or leads through strategic, incentivized re-engagement.
Event Email AutomationSegmentManages end-to-end communications for webinars, conferences, and product launches.
Nurture Campaign Email AutomationSegmentBuilds long-term relationships through structured, behavior-based engagement journeys.
Signup Form AutomationEventCaptures consent and automates record creation immediately upon form submission.

Moving from Building Automation to Optimizing Experience

The six flow templates in Agentforce Marketing represent an important shift in how organizations approach marketing automation. Instead of spending hours recreating common journeys, marketers now have pre-designed frameworks that provide a strong starting point. Whether you are launching a lead nurture program, reconnecting with inactive customers, managing an event experience, or capturing new subscribers, these templates help reduce implementation effort and accelerate time to value.

The future of marketing automation is not about removing the marketer from the process. It’s about removing repetitive work so marketers can spend more time where they provide the most value: understanding customers, creating meaningful experiences, and driving business growth. Open the Agentforce Marketing app today, explore the new templates, and see how much faster you can get your next campaign live.

Need Assistance?

If you need any assistance with your Agentforce Marketing platform, please reach out to the Sercante l Trilliad team! We would be happy to help you navigate your next steps in starting to use the platform alongside your existing technology to drive better results.

Contact the Sercante | Trilliad team for help with your Agentforce Marketing Platform.

The painful reality of a clunky CRM configuration is low adoption, messy data, and an estimated 14% drop in closed deals. When your CRM is built for management oversight instead of seller enablement, everyone suffers, especially your buyers. But knowing you have a problem is only half the battle. The real questions for Marketers, RevOps, and Sales Operations leaders are: What does an ideal CRM seller experience actually look like in 2026, and how do we get there? Why does this matter now more than ever?

As we outline in our 2026 CRM Optimization Playbook, three major industry forces are shifting CRM optimization from a “nice-to-have project” to an absolute revenue priority. If you want your tech stack to act as a force multiplier for sellers rather than a budget drain, you need to understand the modern blueprint for a frictionless CRM.

Download the 2026 CRM Optimization Playbook

Why Are the Stakes Higher in 2026?

We aren’t operating in the same B2B landscape we were a few years ago. If you are still running a CRM configured for 2018 reporting needs, you are actively fighting three major headwinds:

  • ROI is Under a Microscope: CFOs are holding the tech budget to a much higher standard. It’s no longer about whether a platform is successfully deployed. It’s about whether it’s actually being adopted by the front lines. 
  • Buyers Are Further Ahead: Prospects are over halfway through their buying journey before they ever talk to sales. Sellers need instant, unified context the second a lead routes to them to add value in the few moments they have left.
  • AI Raises the Stakes on Clean Data: Everyone is eager to layer in AI assistants or platforms like Agentforce. But here is a sobering reality: at least 50% of generative AI projects were abandoned after proof of concept because of factors including poor data quality, inadequate risk controls, escalating costs, or unclear business value (Gartner).

The Modern Blueprint: An Ideal CRM Seller Experience

When you optimize the seller experience, the wins ripple across the entire lead-to-revenue lifecycle. It stops being a “Sales Ops project” and becomes a multi-department win.

Here is what happens when you design a CRM for your front lines:

Focus AreaThe Frictionless WorkflowThe  Impact 
Smarter ProspectingIntent and signal-based outreach take the guesswork out of who to call and what to say.~47% higher conversion rate over traditional scoring models (Landbase).
Frictionless Activity ManagementThe system automatically captures email, meeting, and call data, giving sellers next-best-action coaching without manual data entry.~4.8 hours per week are saved by AI (Gartner).
Strategic Account GrowthData-driven whitespace identification points account for teams exactly where cross-sell and upsell potential is highest.~Sales teams using AI are 30% more likely to report year-over-year revenue growth (Salesforce). 
Seamless Sales ProcessesHeadless CRM systems, like Salesforce, allow data and actions to be used inside additional tools sellers are already using, such as Slack, Microsoft Teams, email inboxes, or AI agents. Allowing them to access clean data in their flow of work, across all channels.~49% increase in seller productivity and 28% shorter sales cycles from process automation (Rox).

How AI Acts as the Ultimate Friction-Reducer (If You Let It)

Once you lay a solid data foundation, AI can step in to eliminate the heavy administrative burden that has plagued sellers for decades. Instead of forcing sellers to be data-entry clerks, optimized platforms allow AI to do what it does best:

  1. Capture the Busywork: Auto-logging meeting notes, participants, and next steps directly from calls without the salesperson typing a single line.
  2. Read the Room at Scale: Surfacing real-time deal health alerts and coaching prompts to catch stalling deals before it’s too late.
  3. Draft the Follow-Up: Triggering timely, personalized outreach based on real-time buyer engagement signals so hot leads never go cold.

By removing the digital drag, you free up your sellers’ brainpower to focus on what they actually do best: building relationships with buyers.

The 2026 Mandate: Trade the Junk Drawer for a Seamless Seller Experience

At this stage in the B2B landscape, a CRM configured merely for management oversight is an active drain on your pipeline, your budget, and your team’s performance. The modern blueprint for growth requires shifting away from the digital drag of manual data entry and embracing a frictionless, optimized CRM seller experience. By laying a clean data foundation and allowing AI to automate the busywork, capture real-time deal health, and surface actionable intent signals, you transform your system from a static reporting tool into a high-powered revenue engine. 

Tackling this all on your own can be overwhelming, and you may not have the bandwidth or the resources to evaluate your CRM and the friction it’s causing on your sellers and your pipeline. Tap into the expertise of the Sercante l Trilliad team with our Seller Experience Audit to fast-track your path to an optimized CRM and get a customized blueprint for quick wins and major revenue impact.

Contact us to get your Seller Experience Audit

Artificial intelligence and real-time data are shifting the landscape under our feet. For a long time, Salesforce Flow was considered “admin territory.” Marketers stuck to traditional journey builders and engagement programs. But things have changed. Flow is no longer just a backend automation tool for admins. It can now be directly harnessed by marketers in the Agentforce Marketing platform (also known as Marketing Cloud Next, or Marketing Cloud Growth or Advanced Edition) to streamline workflows and deliver personalized, multi-channel journeys at scale. And for marketers with Marketing Cloud Engagement or Account Engagement, they can already access these features. To start taking advantage, it’s critical to start learning Agentforce Marketing Flow fundamentals.

Register for the Agentforce Marketing: Unlock Data and Drive Measurable Growth webinar

See how fellow marketers at Denver Public Schools are already using Flow and Agentforce Marketing features to streamline campaign workflows, deliver multi-channel campaigns, and track attribution. Register Here

The Foundation: Diving into Flow Basics

Historically, Flow Builder was seen as a tool reserved only for Salesforce Admins because of its ability to perform deep backend activities like creating records, automating heavy backend logic, or running APEX.  

With the arrival of Agentforce Marketing, we now have Marketing Flows—sometimes referred to as “citizen flow”. It uses the exact same interface and requires a similar foundational skillset, but it gives marketers unprecedented control over their campaigns. Don’t worry, admins: access to Marketing Flow does not equal full admin rights. Granular control remains secure through specific user permissions.

What is Flow Builder?

Flow Builder is a drag-and-drop visual interface used to automate complex business processes, workflows, and user interactions. Think of it as the core automation engine of Agentforce Marketing. It seamlessly orchestrates your three most vital assets: 

  • Segment: Your targeted audience.
  • Content: Your dynamic messaging.
  • Actions: Your delivery mechanisms.

What can you do with Flow?

Marketing Flows provide a massive playground of strategic options:

  • Send: Deploy emails, SMS, and WhatsApp messages directly through the canvas.  
  • Wait: Pause an individual’s progress for a specific amount of time (from minutes to months) or until a specific event occurs.  
  • Update: Dynamically push data to multiple objects or auto-create tasks for your internal team members.  
  • Customize: Branch engagement paths using real-time data or user interactions.  
  • Optimize: Utilize built-in Path Experiments to split-test channels, content variations, and delivery cadences.

What are the types of Flow?

There are several core marketing flow types tailored to your specific orchestration needs. Below are the most common flow types you’ll need in Agentforce Marketing:

  • Automation Event-Triggered: Runs quietly in the background and fires immediately when an action occurs—such as a form fill, an email click, or a new subscriber signup. These are frequently used as completion actions or to instantly route leads.  
  • Segment Triggered (recently renamed to “Audience Flow”): Targets a specific group of people (segments, lists, campaign members, etc.) when the flow runs. It is ideal for nurturing new leads or managing ongoing communications, allowing users to exit via rules or end steps.  
  • Data 360 Flows: Powered by Data Cloud permissions, these flows can auto-convert records or trigger automation based on calculated insights and real-time score changes.  
  • CRM Record-Triggered Flow: This type fires the moment CRM record data changes or updates.  
  • Autolaunched Flow: Background automation kicked off by subflows, Apex code, or REST APIs.

Elements: The Building Blocks of Flow

Every flow you build is constructed using three basic types of canvas elements:

  • Logic Elements: Includes options like Decisions to branch your paths, Wait Time based on a date, time, or event, and Path Experiments to test different paths.  
  • Data Elements: Elements that let you directly Create, Get, Update, or Delete records across the platform.  
  • Interaction Elements: The execution steps, where you can Send Email, Send SMS, Send WhatsApp, create Consent, or trigger a Subflow. 

Agentforce Marketing Flow: Three Ways to Build

Building out your vision doesn’t mean staring at a blank whiteboard. Agentforce Marketing gives you three flexible onboarding paths depending on your technical comfort level and campaign complexity.

Learn more and sign up for Agentforce Marketing Flow Fundamentals Workshop

Start learning how to build your own flows with this hands-on training, Agentforce Marketing Flow Fundamentals Workshop. Learn more and sign up here.

Building Flows with Agentforce

If you are a new Flow user or simply want to quickly stand up a simple nurture, you can use the conversational Agentforce Campaign Creation interface. By providing a prompt grounded in a campaign brief, Agentforce will automatically generate a campaign preview and lay out the flow steps for you. From there, you can ask the agent to refine text tones, add messages, or alter paths using natural language.

Building Flows with Campaign Canvas

The Campaign Canvas is perfect for simple nurtures and straightforward customer journeys that do not require complex decision splits. It offers a streamlined “Quick Start” interface where you can rapidly add linear steps for your triggers, target segments, message content, and wait periods.

Using Flow Builder

When your campaign demands advanced nurtures, exit rules, behavioral decisions, or experiments, it’s time to open up the full Flow Builder. Here, you get full access to the toolbox, manager tabs, canvas layout, and the ability to cleanly cut, copy, paste, and configure every element.

You can also combine these approaches to building flow. Using Agentforce or the Campaign Canvas is a great way to start your flow structure. You can then use the Flow Builder to fine-tune the flow details and add more advanced flow logic. 

Lean on Flow Templates to Save Time

You don’t have to reinvent the wheel every time you launch a new campaign. Salesforce provides over 300 out-of-the-box templates, including multiple marketing-focused options.

Furthermore, once you build a custom flow architecture that works perfectly for your brand, you can save your own flows as templates for your wider marketing team to replicate safely. Flow templates are a great way to avoid starting from scratch. Learn more about Flow Templates from Mike Morris’ blog, Saving Time with Flow Templates in Agentforce Marketing.

Getting Started with Flow & Agentforce Marketing

It’s critical for marketers to start learning Flow to take advantage of the latest automation, AI, and real-time data features in Agentforce Marketing. However, the path to not only learn Flow but also figure out the best deployment approach for your organization to start using these features alongside your current platform can feel overwhelming.  

You don’t have to continue on this journey alone. Tap into the expertise of the Sercante | Trilliad team. We’ve developed a proven Marketing Cloud Convergence Path that we tailor to each marketing team’s business outcomes, ensuring you can continue maximizing your existing platform while fast-tracking your overall time to value.

Learn about the Marketing Cloud Convergence Path

For years, email marketers have relied on email opens to measure campaign success. However, privacy features such as Apple Mail Privacy Protection, inbox security tools and email client behaviour have made email opens an increasingly unreliable measure of engagement.

Now, European regulators are moving the conversation one step further by questioning whether tracking pixels should be used at all without prior consent.

Fortunately, Salesforce has recently introduced new controls in Marketing Cloud Account Engagement (formerly Pardot) that give organisations much greater flexibility over how email tracking is managed.

This shift isn’t just about the reliability of email opens – it’s about whether organisations should be collecting that data in the first place.

What Has Changed?

In 2026, both the French CNIL and Italian Garante published guidance on the use of tracking pixels in marketing emails.

The guidance explains that, for many marketing use cases, tracking pixels should only be used with the recipient’s prior consent under the existing ePrivacy Directive and the GDPR. This isn’t a new law. Rather, it explains how existing privacy requirements should be interpreted and applied to email tracking technologies. CNIL recommendation on tracking pixels in emails

Both regulators have also provided transition periods to allow organisations time to review their email marketing practices. In France, the CNIL’s transition period for existing marketing databases runs until 14 July 2026, while the Italian Garante’s guidance provides a six-month transition period ending on 28 October 2026.

Although the guidance currently applies specifically to France and Italy, many organisations operating across Europe are reviewing their wider email tracking strategy rather than implementing different approaches for individual countries.

Why This Matters for Account Engagement Customers

Many Marketing Cloud Account Engagement features have traditionally relied on email open data, including:

  • Engagement Studio programmes
  • Dynamic Lists
  • Automation Rules
  • Lead scoring
  • Campaign reporting

If collecting email open data requires additional consent, organisations need to consider whether email opens should continue to drive marketing automation, segmentation, lead scoring and reporting – or whether stronger engagement signals should take their place.

Salesforce Has Introduced a Better Option

Historically, Account Engagement customers had limited choices. If you wanted to stop collecting email open data, you generally had to either:

  • Send text-only emails, or
  • Disable email tracking across the entire Business Unit, which also disabled click tracking.

Salesforce has now introduced new account-level Email Tracking settings that allow administrators to independently manage:

  • Email Open Tracking
  • Advanced Email Analytics
  • Email Click Tracking

This is a significant improvement for Account Engagement customers.

Rather than choosing between tracking everything or nothing, organisations can now disable email open tracking while continuing to send HTML emails and retain click tracking.

For many organisations, this provides a much simpler alternative to maintaining separate consent programmes or separate HTML and text-only marketing journeys.

Configuring the New Email Tracking Settings

The new tracking controls can be found under:

Account Engagement Settings → Email Tracking

From here, administrators can independently configure:

  • Email Open Tracking
  • Advanced Email Analytics
  • Email Click Tracking

These settings apply at the Business Unit level, so any changes should be agreed with your Legal, Compliance and Marketing teams before being implemented.

Email tracking settings

Review Your Automations Before Making Changes

Before disabling email open tracking, it’s worth identifying where email opens are currently used within your Account Engagement instance.

Common areas include:

  • Engagement Studio programmes
  • Automation Rules
  • Dynamic Lists
  • Completion Actions
  • Lead scoring models

Fortunately, Account Engagement already provides an Open Rules Audit report to help identify these dependencies.

Navigate to:

Reports → Marketing Assets → Automations → Open Rules Audit

This report provides a quick overview of any automation currently relying on email open criteria, making it much easier to understand what may need updating.

Report overview of any automation currently relying on email open criteria.

Best Practice: Don’t simply replace every Email Open condition with Email Click. Use this opportunity to review whether a stronger engagement signal – such as a landing page visit, form submission or consultation request – would provide a more meaningful measure of buying intent.

Focus on Meaningful Engagement

Even before these privacy changes, email opens had become an increasingly unreliable indicator of genuine engagement.

Rather than asking “Did they open my email?“, marketers should increasingly ask “Did they do something meaningful?

Consider measuring outcomes such as:

  • Email click-through rates
  • Landing page visits
  • Form submissions
  • Content downloads
  • Webinar registrations
  • Consultation or demo requests
  • Campaign influence
  • Pipeline generated
  • Revenue won

These metrics provide a much stronger indication of customer intent and marketing performance than whether a tracking pixel happened to load.

Final Thoughts

The conversation around email open  tracking isn’t really about losing a metric – it’s about improving the way we measure marketing success.

Privacy expectations will continue to evolve, but the most successful marketing teams won’t be the ones collecting the most data. They’ll be the ones measuring the data that genuinely reflects customer intent.

With Salesforce’s new tracking controls, Marketing Cloud Account Engagement customers now have the flexibility to align with evolving privacy requirements while continuing to deliver engaging HTML email experiences and shifting their focus from increasingly unreliable open rates to the engagement metrics that truly drive business results.

If you’ve spent years building Dynamic Lists and Engagement Studio programs, opening Data 360 for the first time can feel overwhelming. Unified Individuals, Segments, Calculated Insights, Data Spaces; it looks like a whole new world. But here’s the thing: it’s not.

At its core, segmentation hasn’t changed. You’re still trying to get the right message to the right person at the right time. What has changed is how much data you have to work with. Instead of building audiences from Prospect records and email engagement alone, Data 360 lets you layer in website activity, CRM data, opportunity history, subscription preferences, and more.

Here’s how to bridge what you already know with what you’ll find in Data 360.

The Biggest Mindset Shift: From Lists to Audiences

In Account Engagement, everything starts with a list.

  • Need a webinar audience? Build a list.
  • Need a re-engagement campaign? Build a list.
  • Need a nurture track? Build a list.

In Data 360, you build reusable audience definitions instead. One segment can power multiple campaigns, journeys, and channels. You’re not creating a new list for every initiative. Think of it this way:

  • Account Engagement: Campaign → Build List → Send Message
  • Data 360: Define Audience → Activate Anywhere

The shift from campaign-specific lists to reusable audiences is the most important concept to internalize before you start building.

Terminology Translation

Before you build anything, here’s the cheat sheet:

Account EngagementData 360 What It Means
ProspectUnified IndividualThe person you’re marketing to
Dynamic ListSegmentA reusable audience built from defined criteria
Dynamic List RulesSegment CriteriaThe logic used to determine audience membership
List MemberSegment MemberSomeone who qualifies for the audience
Prospect ActivityEngagement DataBehavioral data used for targeting
Marketing ListPublished SegmentA ready-to-use audience for activation
Score & GradeAttributesSignals used to identify high-intent audiences

Once that mapping clicks, the platform becomes a lot less intimidating.

Before You Build: Know Your Data

One thing that surprises most Account Engagement users is how much data is available in Data 360. Depending on your setup, you may have access to:

  • Prospect data
  • CRM data
  • Email engagement
  • Forms
  • Landing Pages
  • Website activity
  • Preference center subscriptions
  • Opportunity data
  • External data sources

This is where Data 360 starts to shine.

In Account Engagement, we ask: “Who opened my email in the last 30 days?”

In Data 360, we ask: “Who opened my email in the last 30 days, visited my pricing page, and doesn’t currently have an open opportunity?”

That’s a fundamentally more sophisticated audience, and it’s exactly why organizations are investing in Data 360.

One important caveat: Not every org has the same data sources connected. Before building complex segments, take time to understand what’s actually flowing into Data 360 and how frequently it refreshes. Knowing your data inventory upfront will save you a lot of troubleshooting later.

Building Your First Segment 

Navigate to Data Cloud > Segments and select New. You’ll see four segment types:

How to build your first segment

Standard Segments are your go-to. These are the closest equivalents to Account Engagement Dynamic Lists and support the vast majority of marketing use cases. Start here.

Waterfall Segments let you prioritize audiences and prevent contacts from qualifying for multiple competing campaigns simultaneously — useful when running multiple offers at once.

Real-Time Segments evaluate audiences on demand for use cases requiring immediate qualification. Powerful, but they come with limitations.

Once you’ve selected Standard Segment, there are four ways to build your audience.

Option 1: Use the Visual Builder 

The Visual Builder offers the most flexibility and is where most marketers spend the majority of their time. The process is straightforward:

  1. Create a New Segment
  2. Select your Data Space (most often your Default Data Space)
  3. Choose the object you want to segment on (most often Unified Individual)
Using the Visual Builder when creating a new segment
  1. Name your Segment
  2. Configure your publishing settings
  3. Drag attributes onto the canvas and define your criteria
  4. Save and publish

Understanding Direct Attributes vs. Related Attributes

This is one of the biggest mindset shifts for Account Engagement users.

When building criteria in the Visual Builder, you’ll typically see two types of attributes:

Direct Attributes

Direct Attributes live directly on the object you’re segmenting against.

For example, if you’re building a segment on the Unified Individual object, direct attributes might include:

  • First Name
  • Last Name
  • Country
  • State
  • Preferred Language

Think of these as fields that belong directly to the person.

Example: Country = United States

This is a simple, direct attribute filter.

Related Attributes

Related Attributes come from connected objects that are related to the object you’re segmenting on.

Examples include:

  • Email engagement activity
  • Opportunities
  • Campaign Membership
  • Website activity
  • Orders
  • Cases

Think of these as records associated with the person rather than fields that live directly on the person.

Example: Opened an email in the last 30 days

The email open isn’t stored directly on the Unified Individual record. It’s stored on a related engagement object.

When Should You Use Each?

A simple rule:

  • Use Direct Attributes when filtering on profile or demographic information.
  • Use Related Attributes when filtering on behavior, engagement, transactions, or relationships.

If you’re asking “Who is this person?” you’re usually looking at Direct Attributes.

If you’re asking “What has this person done?” you’re usually looking at Related Attributes.

Understanding that distinction makes segment building much easier and helps explain why some criteria appear in different areas of the builder.

Option 2: Use Quick Filters 

Need a common audience fast? Quick Filters offer predefined criteria for standard scenarios like:

  • New Contacts created today
  • New Leads created today
  • Recent Campaign Members
  • Contacts related to a won Opportunity

Access Quick Filters by navigating to Campaign while in the Marketing Cloud Next app. Open a campaign and select Select Segment. It’s a great starting point if you’re brand new to the platform.

Accessing quick filters by going to Campaign
Once in campaign select "Select Segment."

Option 3: Use Einstein to Build a Draft 

Not sure where to begin? Einstein Segment Creation lets you describe the audience you want in plain language:

How to build a draft using Einstein Segment Creation

Show me subscribers who opened an email in the last 30 days, visited our pricing page, and are subscribed to product updates. 

Einstein generates a draft segment you can review, refine, and publish. Think of it as a shortcut to a first draft and always validate the output before going live.

Option 4: Use a Dynamic Segment

If you find yourself creating the same types of audiences repeatedly, Dynamic Builders can help streamline the process. Instead of starting from scratch each time, Dynamic Builders let you create reusable audience templates with configurable criteria. Marketers can then generate new segments from those templates by simply selecting or updating a few values, helping ensure consistency across campaigns while reducing manual effort. They’re especially useful for organizations with standardized audience definitions or recurring segmentation needs, allowing teams to scale segmentation without rebuilding the same logic over and over.

Which option should you choose? If you’re just getting started, use Quick Filters for common audiences or the Visual Builder for custom logic. Einstein Segment Creation is a great way to generate a first draft from natural language, while Dynamic Builders are best when your organization wants to standardize and reuse the same audience patterns across multiple campaigns.

Tips, Gotchas, and Things I Tell Every Client

Use the IN Operator Instead of Stacking OR Conditions

If your CRM has multiple versions of the same value, the IN operator saves you a lot of time. Instead of building three separate OR conditions, write: 

Country IN (USA, US, United States)

It supports up to 100 values. Clean, readable, and much easier to maintain.

Understand Measurements, Operators, and Values

When working with behavioral data, Data 360 often asks you to combine three pieces:

  • Measurement
  • Operator
  • Value

For example: Email Opens → Count → At Least → 1

This translates to: “The person has opened at least one email.”

Another example: Email Clicks → Count → Greater Than → 5

This translates to: “The person has clicked more than five emails.”

Think of it like a sentence: Measurement + Operator + Value = Audience Rule

Examples:

  • Count At Least 1
  • Count Equals 0
  • Sum Greater Than 1000
  • Count Between 5 and 10

If a segment returns unexpected results, this combination is often the first place I investigate. The measurement may be correct, but the operator or value may not align with the business requirement.

Use Include and Exclude Intentionally

One of the most common mistakes I see is placing all data requirements into the “Include” section. Instead, think of Include as those who belong and Exclude as those who don’t belong. Separating those concepts creates cleaner segments and makes troubleshooting much easier.

Include Criteria: Country IN (USA, US, United States)

Exclude Criteria: Emailed in the last 3 days

Use EQUALS When Your Data Is Clean

When a field is standardized, and you only need one exact match, EQUALS is the right call. Country EQUALS USA will only return records where the value is exactly “USA.” No flexibility, but that’s the point.

Build Frequency and Recency Into Your Logic

This is where Data 360 starts to feel genuinely different from Account Engagement. You can filter by:

  • Has been emailed X times in the last Y days is great for suppression. If someone has received 3 emails in the last 7 days, you probably don’t want to send them a fourth.
  • Has not engaged in X days is your re-engagement and deliverability workhorse. Use it to identify lapsed subscribers before they become a problem.
  • Subscribed to [Preference] will build audiences based on what contacts have explicitly opted into. Increasingly important for compliance and deliverability.

Always Preview Before You Publish

Segment Preview lets you check audience size, sample records, and whether your include/exclude logic is working as intended. A few minutes here can save hours of troubleshooting later.

Account for Processing Time

Data 360 isn’t always instantaneous. Initial data ingestion can take days, depending on volume. Segment calculations take time and Dynamic Lists connected to a Data 360 Segment can take up to three hours to populate the first time. If nothing shows up immediately, give it time before assuming something is broken.

Not All Account Engagement Activity Is Automatically Available

A common misconception: not every historical activity flows into Data 360 by default. What’s available depends on your connector configuration and the Filter By Date you set when connecting. Before building complex engagement-based segments, confirm what data is actually being ingested.

Data 360 Doesn’t Honor CRM Visibility Rules

This one surprises many Salesforce Admins. Users can segment records in Data 360 that they can’t see in the CRM. If access control matters for your org, address it before rolling out segmentation broadly. The most reliable controls are user permissions and Business Units.

From Segment to Activation

One of the biggest misconceptions I encounter: adopting Data 360 means abandoning Account Engagement. It doesn’t. One of my favorite use cases is building sophisticated audiences in Data 360 and activating them directly through Account Engagement via the Data 360 Connector. To connect a Data 360 Segment to Account Engagement:

  1. Navigate to Account Engagement → Segmentation → Lists
  2. Create a Dynamic List
  3. Select Data Cloud Segment as the Dynamic List Type
  4. Choose your published segment

The first sync takes up to three hours. After that, membership updates automatically whenever the segment refreshes. Once connected, the Dynamic List works anywhere in Account Engagement, including Engagement Studio, Automation Rules, List Emails, Completion Actions, and Reporting. Data 360 identifies the audience. Account Engagement engages it. That’s where the value compounds.

Three Segments to Build First

Not sure where to start? These three are worth building in almost every org.

Recently Engaged Contacts: people actively interacting with your brand. Use for webinar invitations, product launches, or newsletters.

  • Opened an email in the last 30 days, OR
  • Clicked an email in the last 30 days, OR
  • Visited your website in the last 30 days

Inactive Subscribers (90+ Days): Subscribers who’ve gone quiet. Use for re-engagement campaigns, deliverability cleanup, or preference center outreach. This audience frequently surfaces new pipeline.

  • Opted in, AND
  • No opens in 90 days, OR
  • No clicks in 90 days

Preference Center Subscribers: Contacts who’ve told you exactly what they want. Use for targeted newsletters, product announcements, or event promotions.

  • Opt in to Product Updates

Data 360 segmentation isn’t replacing the skills you’ve built in Account Engagement; it’s extending them. You’re still defining criteria, building audiences, and activating campaigns. The difference is you now have richer data and more ways to use it. Start simple. Build a Quick Filter segment, get comfortable with the interface, then move into the Visual Builder. Before long, you’ll stop asking how to recreate Dynamic Lists and start asking what was possible all along.

Think about your last pipeline review. How many times did you hear “oh yeah, I just haven’t updated that”? Meanwhile, marketers, RevOps, and sales leaders are left with limited pipeline visibility, wondering which campaigns are actually moving the needle, and how far off the team will be from the original forecast. This CRM data quality issue is the symptom of a much bigger problem. And it’s quietly costing you revenue. With how much the CRM can impact sales performance and the buyer’s experience, it’s critical that marketing, sales, and operations leadership understand the case for CRM optimization.

For most revenue teams, the CRM has become the thing sellers tolerate rather than the thing that helps them win. That’s not a people problem. It’s a design problem. Sellers are wrestling with clunky interfaces and manual processes, while hunting down intel in fragmented systems, and buyers feel the friction when they’re waiting to be followed up with, or have to repeat themselves on a call.

In Sercante l Trilliad’s playbook, The CRM Paradox: Why Your System is Killing Pipeline (And How to Fix It), it dives into the statistics and impacts on sellers, buyers, and the overall business when the CRM is not set up to be aligned with how sellers actually sell, and includes a proven framework for identifying the friction and how to start solving it. Get the highlights on the case for CRM optimization below and download the playbook to get all the details.

Download the CRM Optimization Playbook

The case for CRM optimization: Your real cost of a “broken” CRM

CRMs weren’t originally built for sellers. They were built for reporting, tracking, and management oversight. So when we drop a seller into a system designed for someone else’s job, friction is the natural result.

The numbers tell the story:

  • 48% of sales leaders say their CRM is more of a burden than a help (Forbes).
  • 76% of salespeople say their CRM is too complex, time-consuming, and outdated (Medium).
  • Companies with low CRM adoption have reported closing  14% fewer deals (ARP Ideas).

Here’s the cycle every revenue leader knows but rarely names: friction leads to low CRM adoption. Low adoption leads to bad data. Bad data leads to obscured buyer views, bad forecasts—and lost revenue.

You’ve most likely felt the downstream cost of seller friction firsthand.

For marketers: 

  • The leaky funnel: Marketing hands off a lead and loses sight of it. Without tracking, delayed follow-ups let hot leads go cold.
  • Painful ROI reporting: Low CRM data quality hides campaign impact, making it impossible to prove what actually drove the deal.
  • Limited personalization: Poor data tracking means limited customer insight, stopping teams from building the tailored experiences today’s buyers expect.

For sales leaders:

  • Blind forecasting: Low CRM adoption leads to inaccurate deal data, forcing leaders to guess on pipeline numbers, making forecasting challenging.  
  • Limited coaching: Without the right deal context in the system of record, managers can’t spot where sellers are stuck or guide them effectively.

For RevOps:

  • Funnel visibility gaps: Siloed intelligence makes it impossible to accurately track funnel velocity and shifting conversion rates.  
  • Legacy drag: Outdated setups force teams to build manual workarounds rather than scalable, automated workflows, making the data issue worse as well as efficiency.

For customer success: 

  • Reactive support: A lack of proactive data insights means CSMs can’t identify or save at-risk accounts before they decide to churn.
  • Eroded kickoff trust: Passing accounts with limited sales context creates a clunky onboarding experience that kills lifetime value.

Where the CRM friction actually lives

Before you can fix it, you have to find it. In most organizations, the drag clusters in five predictable places.

  1. Administrative burden. Sellers spend 60%+ of their time on manual data entry instead of selling (Salesforce). Every redundant field and extra click is selling time you’re paying for and not getting.
  2. The seller’s CRM perception. If sellers don’t see the CRM as being useful and only have frustrating experiences when using it, their view of the CRM will only continue to lead to low CRM adoption.
  3. Siloed intelligence. Critical deal context lives in Slack, email, and “shadow” spreadsheets—everywhere except the system of record. When the insight isn’t where the seller is working, it may as well not exist.
  4. Legacy configuration. Many orgs are running a CRM built for 2018 reporting needs, not 2026 workflows. The business changed. The setup didn’t.
  5. The marketing visibility gap. This is the one that quietly breaks cross-functional trust. Marketing hands off a lead and loses sight of it. Sales picks it up with no context. And no one can prove what actually drove the deal.

Ask yourself: Which of these five is costing my team the most right now? You probably already know the answer.

Your buyer feels every bit of it

Here’s the part that’s easy to miss from inside a pipeline dashboard: internal friction never stays internal. If your sellers are fighting their tools, they aren’t fighting for your buyers.

In Part III of Sercante l Trilliad’s series, Built to Buy, industry experts explore what a broken seller experience looks like from the buyer’s side of the table:

  • The delayed hand-off. A hot marketing lead goes cold because the assignment logic is broken or buried in a rep’s queue. The buyer raised their hand—and heard nothing back.
  • The interrogation session. A prospect repeats their pain points, budget, and scope on a call because the marketing context never synced to the record. To them, it feels like your left hand doesn’t know what your right hand is doing.
  • The missing follow-up. A customized proposal arrives days late because the seller is drowning in admin instead of engaging. By then, attention has moved on.
Watch Part III of Built to Buy Series: A Better CRM For Sellers = A Better Experience for Buyers

Your customer doesn’t think, “Am I in a marketing, sales, or success experience?” They just know they’re having an experience—and they want it to be easy. When your departments feel out of sync, buyers quietly move to a competitor who feels organized. A CRM that feels clunky to your seller feels clunky to your buyer.

Getting started on your CRM optimization

The key to getting started is acknowledging the impact that the state of the CRM has on your business for sellers, your buyers, and every department. Then it’s about spotting where the friction actually lives and mapping out the next steps for solving it. 

If you’d like to fast-track getting started with your CRM optimization, reach out to the Sercante l Trilliad team for a Seller Experience Audit. Then, receive a clear blueprint for quick wins with a big impact and a roadmap for your ideal CRM seller experience.

Contact us for your CRM Seller Experience audit

Agentforce Marketing has quickly become a focal point for Salesforce Marketers. However, many Account Engagement customers are still trying to understand how this new platform operates and how it fits alongside their current tools. While Agentforce Marketing is designed to encompass all the features of Account Engagement, it introduces distinct features and a completely new lexicon. To bridge the gap, let’s dive into the Account Engagement that you know and love and how these features are translated, in name and functionality, to Agentforce Marketing. 

What’s in a Name?

Let’s start with what initially trips users up – the product name. A common question I get from users is whether this new platform is called “Agentforce Marketing” or “Marketing Cloud Next” and the answer is both! 

“Agentforce Marketing” appears to be the name that will stick around in the long term, but “Marketing Cloud Next” is used in most of the help articles and guides about this new platform. My guess is “Marketing Cloud Next” may be phased out as the tool grows and evolves. For the time being, both names are correct and refer to the latest Marketing Automation Tools from Salesforce. 

There are also a few other names you may run into, including

  • Marketing Cloud Growth: This refers to the “Growth” edition of Agentforce Marketing.
  • Marketing Cloud Advanced: This refers to the “Advanced” edition of Agentforce Marketing.
  • Marketing Cloud on Core: This name was adopted by the community pre “Marketing Cloud Next”. It helped us designate a difference between OG “Marketing Cloud” (aka Marketing Cloud Engagement) and the new platform. “On Core” designates that this Marketing Platform, unlike Engagement or Account Engagement, is truly built on the core Salesforce platform. 
  • Account Engagement +: This term is more Salesforce SKU-based and refers to Account Engagement users who are also using the Agentforce Marketing Platform alongside their Account Engagement org. 
  • Engagement + / Marketing Cloud +: Similar to the above, this is Salesforce SKU-based and refers to Marketing Cloud Engagement customers using the Agentforce Marketing Platform alongside their Engagement org. 

Features and Terminology

Prospects

In Account Engagement, a Prospect refers to an identified individual. Prospects can remain solely in Account Engagement or sync to Salesforce Leads and Contacts. The equivalent of a Prospect in Agentforce Marketing is a Unified Individual.

A Unified Individual is a consolidated record of metadata related to multiple Prospect, Lead, and Contact records for the same person. To put this in simpler terms, say you have multiple Lead and Contact records for the same individual within your CRM. Each of these records has different information about said customer and each record retains its own engagement and activity data. This disparate view of your customer gives your teams an incomplete and sometimes incorrect picture of your customer. Data 360 unites these disparate records using Identity Resolution rules and provides your team with a consolidated and complete view of each customer, the Unified Individual. 

Learn more about Unified Individuals in the Data and Identity in Data 360 Trailhead Module.

Now, a few releases ago, Salesforce also added a Prospect object to CRM. This means that marketers can create pre-lead or unqualified records directly in Salesforce to mimic the same functionality we have in Account Engagement. Currently the CRM Prospect record cannot sync with Account Engagement Prospects, but I expect functionality around the Prospect CRM object to grow and this could be something we see in a few releases. 

Lists

In Account Engagement, there are two main List types: 

  • Static Lists are built one time and only update with manual changes.
  • Dynamic Lists are rule-based and automatically update when a Prospect’s data changes.

The equivalent of a List in Agentforce Marketing is a Data 360 Segment

Data 360 Segments consist of Unified Individuals that match filtering rule criteria that you set. Similar to Account Engagement Dynamic Lists, you can assign multiple rule criteria to a Segment with AND/OR logic between each rule. You can also match a field against multiple values using the “Is In” operator. The image below shows an example of a Segment using multiple rule criteria in Agentforce Marketing.

A Segment using multiple rule criteria in Agentforce Marketing

Whether a Data 360 Segment is static or dynamic depends on its publish schedule. You can set a Segment to “Do Not Schedule”, essentially making the list static, or configure a publish schedule to refresh your Segment as needed. The image below depicts the Edit Properties window in Agentforce Marketing where the publish schedule is defined.

The edit Properties window in Agentforce Marketing where the publish schedule is defined.

Segments can be used in Agentforce Marketing or, with the Data 360 Connector, synced down to Account Engagement as a Dynamic List.

Now, if you prefer to curate your list rather than use Segment rules, you can either add Leads/Contacts to your Campaign and then create a Segment of Campaign Members: 

Selecting a segment

Or, after the Summer ‘26 release, utilize the new List and Audience Flow features to circumvent the need for a Data 360 Segment.

Learn more about segments in the Segmentation in Data 360 Trailhead Module.

Engagement Studio Program

Engagement Studio Programs enable you to automate multi-touch customer journeys using triggers, rules, and actions. These programs nurture Prospects through the sales funnel and ensure timely and relevant communications. The Agentforce Marketing equivalent to Engagement Studio Programs is Flow Builder

Flow Builder is the automation engine of Agentforce Marketing, helping you build and execute complex, multi-channel marketing campaigns. Engagement Studio Programs and Flow Builder have a lot of overlap: They both have a top-down vertical layout, use elements as steps within the program/flow, and allow you to customize processes down different paths based on conditions. 

Learn more about Flows in the Flow Builder Basics Trailhead Module and the Understanding Campaigns and Flows in Marketing Cloud Next help article. 

Completion Action

In Account Engagement, Completion Actions trigger when a Prospect takes a specific action, such as filling out a form. The Agentforce Marketing equivalent of this is Automation Event-Triggered Flows

Automation Event-Triggered Flows, sometimes referred to as Form-Triggered Flows or just Event-Triggered Flows, trigger when an individual takes an action. Automation Event-Triggered Flows allow you to trigger a single action or build an entire customer journey to nurture the individual after an event. 

Agentforce Marketing includes several pre-configured events and Engagement Signals can be used to build any additional desired events. 

Automation Rule

Account Engagement Automation Rules are repeatable, criteria-based rules that find matching Prospects and apply actions to them. The Agentforce Marketing equivalent to Automation Rules is Flow Builder, but the type of flow depends on your criteria. 

Scoring and Grading

Account Engagement uses Scoring and Grading to help you identify, qualify, and prioritize Prospects in your org. 

In Account Engagement, Scoring indicates how engaged a Prospect is by assigning numerical points to each activity the Prospect performs, its Agentforce Marketing equivalent is Engagement Scoring. Similar to Account Engagement Scoring, Agentforce Marketing’s Engagement Scoring assigns numerical points to activities. A default scoring system is provided, but you can fully customize the conditions and points. 

In Account Engagement, Grading indicates how closely the prospect fits your ideal customer by evaluating pre-configured criteria and assigning a letter grade. The Agentforce Marketing equivalent of Grading is Fit Scoring. Similar to Engagement Scoring, Fit Scoring assigns numerical points to individuals if they match your fit criteria. Fit Scoring conditions and points can also be fully customized. 

In Account Engagement, Prospects do not have a metric that reflects a combination of the Score and Grade. Score and Grade are kept as completely separate metrics, but can be used together to establish a qualification threshold. In Agentforce Marketing, individuals do have a combined rating called Overall Score. The Overall Score will always be between 0 and 100. The Overall Score is initially 50% Engagement and 50% Fit, but this can be customized as needed as well. 

The image below shows how Agentforce Marketing’s score weights can be customized.

How Agentforce Marketing’s score weights can be customized

With Advanced Edition you can also score the fit, engagement, and intent  of your Accounts

Mailability

In Account Engagement, a prospect’s mailability or mailable status refers to whether or not they can receive marketing emails. If an Account Engagement Prospect has a hard bounce, five soft bounces, has unsubscribed themselves, or has been manually opted out, they are considered unmailable. 

Agentforce Marketing uses Consent for a more comprehensive approach to mailability. Within Agentforce Marketing, individuals set their subscription preferences to indicate the channel they want to receive communication within (Email, SMS, WhatsApp) and the subscription (newsletter, events, product updates etc.). For example, an individual may subscribe to receive event updates via SMS and receive your newsletter via email. Agentforce Marketing will create a consent record within Data 360 for each choice. 

Learn more about consent differences between the two systems in the Understanding Consent Differences Between Account Engagement and Marketing Cloud Next help article. 

If you plan on using Account Engagement and Agentforce Marketing side-by-side, it may be beneficial to align consent between the two systems

A/B Testing

In Account Engagement, A/B Testing allows you to optimize your email content by sending two versions of an email to a small subset of your recipient list. The engagement data of these two email variations is used to determine a winning version that is then sent to the remaining subset of your recipient list. Agentforce Marketing’s equivalent is Path Experiment, however Path Experiment allows you to do much more than send just two variations of a single email. 

Path Experiment, which is available for the Advanced Edition of Agentforce Marketing, allows you to experiment with up to 10 different versions of a customer journey to determine the most effective path. This means you can test content variations (i.e. which subject line gets more opens?), channel variations (i.e. do you get more opens with email or sms?), and even cadence variations (do we get better results sending more or less emails?). Similar to A/B Testing, Path Experiment allows you to test with a subset of your audience before sending your remaining audience members down the winning path. 

Learn more about Path Experiment in the Marketing Cloud Flow Element: Path Experiment help article. 

Sender Domains

In Account Engagement, Sender Domains define where you can send emails from. For example, if my Sender is [email protected] then Salesforce.com is my Sender Domain. The Agentforce Marketing equivalent is Authenticated Domains. For both sender and authenticated domains you will need to work with your IT team to create DNS records. These records help improve the deliverability of your emails by defining you as a legitimate sender.

Learn more about Authenticated Domains in the Domain Settings in Marketing Cloud Next help article. 

Dynamic Content

In Account Engagement, Dynamic Content enables you to create field-based variations of content. If the Prospect’s field matches the designated field value, then they will see that content variation on your website or within your marketing assets. Agentforce Marketing also has Dynamic Content, but it has more advanced functionality. 

Agentforce Marketing’s Dynamic Content functionality allows you to personalize your email based on fields or any data source connected to your individual. For example, you can build the variations based off of Account data or data from an event the recipient recently attended. You can also personalize multiple sections of your marketing assets, or personalization points,  within one Dynamic Content variation. This allows you to dynamically update nearly every aspect of an email more efficiently. 

Agentforce Marketing Dynamic Content relies on: 

  1. Personalization Point: An element of content that’s eligible for a personalization decision. For example, an email’s subject line and preheader or an image component within the email are “points” that you can personalize.
  2. Personalization Decision: Criteria that determines who’s eligible to receive a personalization response.
  3. Targeting Rule: Conditions for showing a specific variation.

Learn more about Dynamic Content in the How Dynamic Content and Salesforce Personalization Work Together help article. 

Page Actions

In Account Engagement, Page Actions trigger additional actions after a Prospect views a specific page of your website. In Agentforce Marketing, you can accomplish the same goal using website tracking and the Website Engagement Data Model Object (DMO). 

The Website Engagement DMO records website page views and clicks, and engagement signals can be created to zero in on specific page view activities. For example, you can create an Engagement Signal that records when a visitor lands on your Pricing page, a good indicator that they may be interested in making a purchase. These Engagement Signals can then be used to trigger Automation Event-Triggered Flows so you can further automate next steps. 

Learn more about website engagement and Engagement Signals in the Marketing Cloud Next: Custom Event-Triggered Flow blog post. 

Campaign

Account Engagement uses both Salesforce and Account Engagement Campaigns. Account Engagement Campaigns are considered thematic touchpoints (similar to a source in other systems), while Salesforce campaigns are a Salesforce CRM object used to plan, manage, and track marketing initiatives. Salesforce and Account Engagement Campaigns are united with the Connected Campaigns feature.

Agentforce Marketing utilizes the Salesforce CRM Campaigns object for both purposes. Campaigns are not only a record that helps organize the audience, assets, and metrics for a specific marketing effort, but they also indicate a touchpoint for your individual. 

Campaigns serve as a centralized hub for a marketing initiative within Agentforce Marketing. Within a Campaign you will find all the relevant information for your Campaign including your Campaign Brief, Campaign Members, associated flows, and reports. 

Where to find your Campaign brief, members, associated flows, and reports

The user interface shown above is unique to viewing Campaigns within the Marketing app. Don’t let the user interface confuse you though, this is the default Salesforce Campaign object that is used by other processes and applications within Salesforce. 

Campaign Influence

In Account Engagement, Campaign Influence helps you tie marketing efforts to your opportunities to see which campaigns are the most influential and successful. Account Engagement Campaign Influence can be a little hands-on, requiring you to add all Leads/Contacts that engage with your Campaign as Campaign Members. Agentforce Marketing uses Opportunity Influence to automate and streamline influence. Opportunity Influence uses engagement data to automatically tie Opportunity revenue back to a specific Campaign without the need for Campaign Membership. 

Learn more about Opportunity Influence in the Attribute Revenue to a Specific Campaign help article. 

AI Assistant

In Account Engagement, AI Assistant is generative AI that assists in drafting forms and landing pages as well as creating email subject lines, headers, and body copy. Agentforce Marketing uses Agentforce and Generative AI to assist with generating copy and so much more. Agentforce Marketing not only helps you generate forms, landing pages, and email content, but can also streamline the entire campaign creation process with the Campaign Creation and Content Builder agents. 

Learn more about Agentforce Marketing’s AI features in the AI in Marketing Cloud Next Trailhead Module.The above gives you an overview of how terminology and features translate between Account Engagement and Agentforce Marketing. If you are ready to take the next step in your Agentforce Marketing journey, check out our A Strategic Path to Navigating Marketing Cloud Convergence blog post or contact us!

The recent unveiling of Salesforce Headless 360 marks a significant paradigm shift in the CRM industry, signaling a move away from rigid, UI-bound ecosystems toward a decoupled, “AI-first” infrastructure. For growth leaders, marketing executives, and revenue operations professionals, this means the CRM is no longer a destination users must manually log into, but rather a background engine. This engine can be accessed conveniently via natural language and “agentic” interfaces like Slack, Teams, or custom coding tools, fundamentally changing how teams interact with critical customer data and functionality.

1. Agentic Orchestration and the Model Context Protocol (MCP)

The core of this transformation is the decoupling of the CRM interface from its data layer, opening up the platform with comprehensive external API access. This shift converts Salesforce data, workflows, and business logic into over 60 composable Model Context Protocol (MCP) tools. These tools act as building blocks that allow AI agents to seamlessly interact with Salesforce without a traditional UI.

This agentic approach promises to automate complex workflows. Operational tasks, such as updating a Salesforce record or opportunity, can now be executed through agentic interfaces like Slack, completely bypassing the need to log into the traditional CRM UI. This functionality also supports extending beyond Salesforce-owned products to a wide variety of other interfaces such as Microsoft Teams, custom web and mobile apps,  or even communication channels like Voice, WhatApp or SMS, as long as they adhere to the MCP protocol. The ultimate positive evolution is toward improved operational efficiency, giving users a consistent experience wherever they are already working, allowing teams to execute tasks like managing pipeline, building dashboards, and campaign journeys easier and without as many technical barriers.

2. Evolving Skillsets: Prompt Engineering and Data Hygiene

As systems transition to an agentic execution model, this democratizes the platform by transforming how non-developers, such as business users and admins, interact with and build upon the system.  This highlights a growing need for a critical emerging competency: prompt engineering. For end users, especially marketers and sales representatives, the ability to write precise instructions are paramount to getting the desired results from AI. This shift necessitates that teams quickly adopt an “AI-first” approach for building solutions. 

However, foundational pieces also remain crucial; even Headless 360, requirements like good data quality and metadata hygiene practices are still essential for success. AI does not natively “know” your business; it relies on your data (the facts) and your metadata (the context, rules, and structure) to make real-time decisions. Keeping data clean, deduplicated and up to date, and ensuring fields have descriptions, picklists are organized and accurate, gives AI the correct information, and the business logic and context to understand what it means. 

3. Strategic Skepticism and Navigating Release Reality

While the potential for improved operational efficiency is high, leaders should approach the Headless 360 announcement with strategic skepticism. As with many major platform evolutions, the full scope of Headless 360 will likely unfold in phases rather than arriving as an immediate, all-in-one solution. While the announcements focus on a complete platform of tools, all are not generally available at this time, with some features in pilot now or planned for release in the summer and beyond, so customers should prepare for implementation over a phased roadmap. Ultimately, the move to Headless360 is a necessary and welcome alignment with modern market standards, ensuring Salesforce remains competitive as organizations increasingly adopt headless architectures.

Executives should view this development as a positive step forward, particularly for organizations that prioritize prompt engineering training and robust data governance. The headless model offers a more seamless and convenient way to integrate  Salesforce functionality where users typically work day-to-day, which is an effective strategy for boosting user adoption. The foundation for this is already emerging, with capabilities such as the Agentic Enterprise Search (also known as Ask Agentforce) feature currently in beta, which uses natural language queries to synthesize summaries from connected systems.

Conclusion 

The Headless 360 announcement marks the beginning of a future where growth is driven by a decentralized, AI-first engine. As technical complexity is abstracted away by agentic interfaces, success will hinge on empowering teams to adopt prompt engineering as a new competency and maintaining unwavering data hygiene. Organizations that can adapt their skillsets and navigate the gap between marketing promise and practical application will be best positioned to leverage this evolution for superior operational efficiency and accelerated growth.

ChatGPT Welcome to Ads Manager Beta message

In case you missed it, last week OpenAI announced that their ad network is now open for a public beta.

If you’re a “bleeding edge” type, you probably already signed up for an Ads Manager Beta account.  If you’re more of “an early middle” type, perhaps you’re taking a wait-and-see approach.

I would strongly advocate for early experimentation with this – it is most certainly going to become a core part of the B2B marketing mix over the next 12 months.  Early learnings can help you determine quickly if/how you pivot your marketing spend and focus for the balance of 2026.

What’s on offer from OpenAI

Back in February, OpenAI announced it was trialing ads with a few select partners. On May 5, 2026, OpenAI announced it was making a self-serve advertising platform available for public beta, with no minimum spend requirement.

This is welcome news to any B2B marketers who have seen traffic dip as a result of LLMs cannibalizing click-through traffic from Google.

Capabilities of ChatGPT Ads

This ad platform is early, and we should expect that it will evolve rapidly.  Think early days of Google and Facebook. 

The rules will change, and the best practices will change, it is the definition of a moving target.  But for now, here’s what we’re working with:

Audience

Through the news Ads Manager Beta, advertisers can reach logged-in users over the age of 18 in the US, Canada, Australia, and New Zealand.  Ads will be shown to Free users and “Go” tier users (lowest tier of paid accounts). All other paid accounts will not be shown ads.

Targeting

You can target based on “context hints” or descriptive phrases of the type of conversations you’d like to be placed in.  OpenAI will use these hints as matching signals alongside the content of your landing page and ad copy.

Certain sensitive topics (health, mental health, politics) are excluded from targeting.

Ad Format

Ads can contain:

  • Your brand name
  • Favicon
  • Headline
  • Description
  • Image
  • Link

Here’s a rough mockup of what that would look like for a user:

ChatGPT Ad mockup

Pricing

ParameterDetail
CPC (Cost Per Click)Clicks objective. Recommended starting max bid: $3-5 USD. Custom max bids available. B2B campaigns may see higher CPCs ($8-15) due to audience depth.
CPM (Cost Per Thousand)Reach objective. Default max bid: $60 CPM. Suitable for brand awareness and early-funnel exposure.
Auction typeRelevance-weighted second-price auction. Winning ad pays just above the second-highest relevant bid.
Minimum budgetNo published minimum as of self-serve launch. Recommended test budget: $2,000-5,000 per month for meaningful data collection.

Measurement

In-platform metrics include:

  • Impressions
  • Clicks
  • Spend
  • CTR
  • Average CPC/CPM, conversions

UTM parameters persist through ad clicks. Remember to set utm_source=chatgpt before launching ads—retroactive attribution is impossible!

What’s NOT Possible with ChatGPT Ads

Demographic Targeting

You cannot target ads based on demographics.  This is a tough pill to swallow in B2B when potential buyers often fit a defined set of criteria, or when you are focused on an ABM strategy.

A lot of B2B marketing starts with asking: “Who is our buyer?”

With ChatGPT Ads, we need to ask: “What question does our best buyer ask right before they need us?”

Agency Managed Accounts

Every business that wants to run ads on ChatGPT needs to sign up for its’ own account at: https://ads.openai.com/.  You can add users from your agency after the account is approved and provisioned.

Integration

As of this publish date, ChatGPT Ads does not have connectors with any CRM or marketing analytics platforms.

Advanced Measurement

I can’t stress this enough: the platform is early.  It’s basic.  There is data you can get from other platforms that you will not get yet with ChatGPT Ads.  But OpenAI has a vested interest in getting this feature stood up – the more you can measure the path to revenue, the more advertisers are going to be willing to pour money into a channel.

Predictability

“Inventory ceilings” are likely going to be an issue for early movers. I would estimate about 20-25% of all ChatGPT users meet the criteria to be shown ads through this beta.  What percentage of those users are B2B decision makers with intent for your particular product?  It’s impossible to get a precise estimate of that with the tools OpenAI has made available today. 

You may find yourself allocating $20K to a pilot and only spending $12K based on how often users are looking for what you’re promoting – but that in and of itself is a valuable insight that can tell you how to prioritize this in your marketing mix.

What are the other LLMs & AI Platforms doing?

Google / Gemini

Not really in the AI ad game yet. Traditional Google Ads placements are sometimes surfaced in Google Search AI overviews. No native conversational ads in Gemini – yet.

Microsoft Copilot

Already selling ads. Ads appear within Copilot responses and other AI surfaces (Bing, Edge) through existing Microsoft Advertising inventory, including Performance Max, Multimedia, and Search campaigns.

Claude

Staunchly anti-ad.  So much so that they made a Super Bowl commercial about it.

Meta AI (Consumer Chat)

No built-in ad slots in chatbot outputs, though Meta uses AI signals to inform ads across its properties.

Perplexity AI

Focused on subscriptions and business features. No current in-chat ads.

What should you do next with ChatGPT Ads?

I would recommend leaning in and experimenting with this early.  Costs at this stage will be lower (with less competition for clicks and impressions), and the early learnings are extremely valuable.

To do a meaningful test, I would suggest a budget of $2K+ per month over a 60-90 day window.

Because this is brand new, you’re not going to find team members or agencies with “years of experience” implementing this strategy…. so you should pick someone to manage it that has a data-driven mindset, is agile/iterative, and has the bandwidth to actively manage this and ensure it is successful.

I suspect that the biggest learning curve is going to be how to write “context hints.”  There’s going to be a little bit of art here since it’s different from how other platforms operate.  Context hints should be written in the user’s language, with the right specificity, mapped to the decision stage you want to capture your audience in – it’s going to take a high degree of user empathy to get this right.

Just Global is actively sharing their early learnings on ChatGPT Ads.  If you’re ready to dive into the “how” and initial best practices, check out their e-book!

Just Global l Trilliad Life on the Edge: B2B Growth in the Age of AI Download Ebook

With the upcoming June 2026 updates Salesforce has just announced, Salesforce is once again raising the bar for platform security. While these updates are designed to keep your data safer than ever, they do require some proactive heavy lifting from admins to ensure integrations don’t break and user access remains seamless.

In line with the messaging we’ve seen from Salesforce recently—focusing on the intersection of AI, Data, and Trust—these enhancements are mandatory. We want to make sure you’re ahead of the curve. Let’s dive into the core security requirements and what you need to do to prepare.

Email Domain Verification 

  • What is changing: Salesforce now strictly requires all outbound email-sending domains to be verified. To verify a domain, you must establish ownership using either DKIM key (recommended) or a verified entry in the authorized email domains list. As part of this change, Salesforce will no longer deliver emails from unverified domains, even if the specific sender’s individual email address was previously verified.
  • Why it matters: Email deliverability is becoming stricter globally, with major mail providers increasingly filtering or rejecting unauthenticated domains. If your organization attempts to send an email from an unverified domain, the delivery will fail and the email will be silently dropped. It won’t generate a bounce notification or an error message for your automations.
  • Who is impacted: Any emails sent directly from the Salesforce platform, which includes emails sent via the Email Composer, Apex email, Flow-triggered emails and even system-generated emails like notifications of a new Lead or Opportunity assignment.
  • Timeline: Enforcement began rolling out to sandboxes in March 2026, and production orgs in April 2026. 
  • How to prepare: 
    • You can check the verification status in your org by going to Deliverability settings in Setup and enter your domain in the Check Domain Verification section.
    • Ensure your email sending domains are verified using one of the following methods:
    • Enable a Safety Net: To minimize immediate business disruption while waiting for domain verification, enable “Use a substitute email address for unverified domains” on the Deliverability Setup page. 
Domain verification section

MFA Mandatory for All Users

  • What is changing:  While Multi-Factor Authentication (MFA) has been a contractual “requirement” for some time, Salesforce is moving toward technical enforcement for all UI logins (i.e. the login.salesforce.com page). This means any user logging into the Salesforce UI must use Multi-Factor Authentication. The ability to toggle this off for specific profiles or bypass it via legacy settings is being deprecated.
  • Why it matters: Data breaches are commonly linked to compromised credentials. Making MFA a technical requirement for every single user, ensures that even if a password is compromised via social engineering, your org remains protected.
  • Who is impacted: All users logging into Salesforce (direct UI or SSO logins) in production or sandbox orgs and do not have one of these permissions: System Administrator profile, Modify All Data, View All Data, Customize Application, or Author Apex. (Users with these permissions are considered “privileged” and have their own MFA requirements, see the next section)
  • Timeline: Enforcement is rolling out in waves, starting in Sandboxes on June 22, 2026, and production orgs starting July 20th.
    • Ahead of enforcement, orgs that have the setting “Require multi-factor authentication (MFA) for all direct UI logins to your Salesforce org”  disabled may start seeing this pop-up message as a heads-up on the upcoming enforcement.
    • Orgs with that have been updated will see the “Require multi-factor authentication (MFA) for all direct UI logins to your Salesforce org” setting (under Setup > Session Settings)  enabled and greyed out.
MFA Reminder pop-up message
  • How to prepare:
    • Audit users still not using MFA to assess who will be impacted. Use the “Identity Verification Methods Report” to view the methods being used by your organization.
    • Identify users relying on the “Waive Multi-Factor Authentication for Exempt Users” permission. To restore this exemption for valid use cases (e.g., automated testing tools), you can contact Salesforce Support for approval.
    • Identify the MFA methods available for your users and determine how they choose a method during initial registration.
    • If you are using Single Sign-On (SSO) through another identity provider (e.g. Okta, Entra), make sure that provider is using MFA and sending valid signals to validate MFA was used (for more information, see Salesforce’s breakdown of signal requirements).
    • Ensure users are prepared for the change and how to register their MFA method.  
  • More information: Prepare for MFA Enforcement for All Employee Users

Phishing-Resistant MFA for Admins or Privileged Users

  • What is changing: Salesforce is introducing a requirement for phishing-resistant MFA for users with “privileged” access. This means moving away from verification codes and toward FIDO2/WebAuthn-based passkeys, hardware security keys (e.g. YubiKeys) or built-in authenticators (e.g. Windows Hello or FaceID) that use FIDO2/WebAuthn standards.
  • Why it matters: Admins hold the keys to the kingdom. Phishing-resistant methods ensure a stronger protection against identity-based threats, and ensures access is tied to authorized users. 
  • Who is impacted: 
  • This change affects all users logging into Salesforce (direct UI or SSO logins) in production or sandbox orgs who meet any of the following conditions:
    • Users assigned with the System Administrator profile
    • Users assigned with any one of these privileged permissions: Modify All Data, View All Data, Customize Application, or Author Apex
  • Once in effect, users will be prompted to register their phishing-resistant MFA method on their next login. 
What it will look like to register the phishing-resistant MFA method on the next login.
  • Timeline: This change will be introduced in sandboxes starting June 22, 2026, and in production orgs starting July 1, 2026
  • How to prepare:

Containment for “High Risk” Connections

  • What is changing: Salesforce will automatically detect and contain traffic that:
    • Are from “High-Risk” connections through Connected App or API usage.
      • Examples of “high risk” connections include anonymizing VPNs (e.g. NordVPN, ExpressVPN, Surfshark, or ProtonVPN), Proxies (e.g. HideMyAss or KProxy) or high-risk IP addresses (e.g. public wifi, blocklisted IPs)
      • Connected App or API usage may include integrations, plugins (e.g. Salesforce Inspector Reloaded) or use of CLI tools.
    • Are significant, novel deviations from typical user login activity based on network, client, authentication events, and geolocation. (detected through an AI-driven monitoring system)
    • If a high risk connection is identified, the following actions will be taken:
      • The affected user account will be frozen.
      • All OAuth refresh tokens granted to the user will be revoked.
      • An email will be delivered to org admins from Salesforce Security (See Administrator Notifications below).
      • The affected user will need to contact their org admin to restore access to their account.
  • Why it matters: This enhancement is aimed at protecting against suspicious activity via anonymizing VPNs, proxies, or high-risk IP addresses; credential harvesting; and token theft. 
  • Timeline: This change started April 24, 2026
  • How to prepare:
    • Ensure users running integrations, plugins or connects are not doing so from high-risk sources
    • If automated containment affects a user, review their session and restore access by unfreezing their user
    • Users will need to avoid connecting from high-risk connections to prevent re-containment. They will also need reauthorize any connected apps
    • If your only admin account is locked out, contact Salesforce Support by phone to have your account reactivated  
  • More information: Preventing Connections from Anonymizing VPNs, Proxies and High-Risk IP Addresses

Step-Up Authentication for Reports

  • What is changing: Salesforce is introducing “Step-Up Authentication.” Even if a user is already logged in, they will be prompted to re-verify their identity (via MFA) when they attempt to run or view reports if a configurable amount of time has passed since their last step-up challenge.
What it looks like when a user is prompted to re-verify their identity (via MFA)
  • Why it matters: This change is intended to prevent malicious data breaches or unauthorized transfer of data to external locations. Given that report views and exports can be susceptible to scraping or unauthorized external use, the step-up authentication ensures these actions require a stronger authentication challenge.
  • Who is affected: This change impacts all users (direct login or SSO) who run or export reports.
  • Timeline: Sandboxes will see this available starting May 27, 026 and enforced starting June 3, 2026. Production orgs will see this available starting May 27, 026 and enforced starting June 10, 2026. 
  • How to prepare:
    • Ensure all users (especially SSO users) have a registered Salesforce MFA method, a valid email, or an SMS phone number, as they will need this to pass the challenge.
    • Review and Configure the Policy: In Setup, go to Identity Verification settings and adjust the cool-down period threshold if your business requires a timeframe different from the 120-minute default.

The Bottom Line

June 2026 is right around the corner. By leaning into preparing for these enhancements now, you’re not just racing to a deadline—you’re hardening your business against the next generation of digital threats.

As you prepare for the rollout, keep these three steps top of mind:

  • Audit: Identify which users will be impacted by the permission changes.
  • Test: Run your critical processes in a Sandbox environment.
  • Educate: Ensure your stakeholders understand the ‘why’ behind the new security protocols.

With a clear plan in place, the transition to a more secure Salesforce platform will be a seamless one.Need a hand getting your security posture ready for 2026? The Sercante team is ready to help you audit and prepare your org for these upcoming changes and your overall security posture. Reach out today!

Pardot Admin Bootcamp

Learn everything you need to know to become a Pardot pro in our six-week interactive course. 

Prospect
Updater

Your automated path to cleaner data. Fix, enhance, and enrich prospect data so things run smoothly while avoiding sync errors.