Updated for Spring '26
New to this track? Our Salesforce Certified Platform Administrator exam prep is the recommended first step. See our certification path to understand where this certification fits. Below you'll find exam weightage, study tips, and practice questions. See our full study guide for deep section coverage. Ready to book? Read our exam tips and study plan.
Join 800+ passed this month • Updated for 2026 • No sign-up required
What's New in Spring '26
Major improvements from Winter '26
Dynamic Routes
All 93 certs migrated to [slug] architecture
Mobile First
Optimized for phones, tablets, desktop
Type Safety
Zero TypeScript errors, runtime validation
SEO Improved
Fixed canonicals, better ranking signals
100% Migration Complete: All certification content migrated with enhanced architecture. No content changes—same great info, better experience.
Written and reviewed by Krishna Mohan — ADM-201, PD1, PD2, App Builder & Consultant certified. Updated for Spring '26. Methodology · Contact
Exam Fees & Registration
Exam Fee
$200
One-time registration fee
Retake Fee
$100
If you need to retake the exam
Comparing certs? View all Salesforce exam fees in one place →
Certification Validity
Your Salesforce Certified Agentforce Specialist certification is valid for 3 years from the date you pass the exam. You'll need to maintain your certification through continuing education or retake the exam.
How to Register
Register for the Salesforce Certified Agentforce Specialist exam through the official Salesforce certification portal.
Register for ExamSalesforce Certified Agentforce Specialist – Complete Spring '26 Guide
Certified Agentforce Specialists are responsible for managing and optimizing Agentforce and have deep understanding of both Salesforce platform configuration and Agentforce capabilities.
Recommended Prerequisites
We recommend completing this certification first to prepare you better.
Salesforce Certified Agentforce Specialist Exam Weightage by Section
Exam Topics
Exam Tips
- 1Know Agentforce configuration: agents, prompts, and data access.
- 2Understand how Agentforce fits with platform security and sharing.
- 3Practice optimizing agent responses and handling edge cases.
- 4Review Trailhead Agentforce modules and release notes.
Prerequisites
- •Platform Administrator knowledge
- •Hands-on Agentforce experience
Focus Areas
- •Agentforce Configuration
- •Platform and Security
- •Agent Capabilities
- •Integration
Study Strategy
Use an org with Agentforce enabled.
Configure at least one agent and test with real data.
Align with the official exam outline.
Exam Format and First-Attempt Readiness
Most Salesforce exams test scenario-based decisions. For Salesforce Certified Agentforce Specialist, focus on when to use each feature, not just terms.
- Do timed question sets. Build pacing and confidence.
- Review why wrong answers are wrong. It improves scenario reasoning.
- Study high-weight topics first. Then close gaps.
- Book the exam when your mock scores are steady.
Agentforce Specialist: Key Concepts for the Exam
Topics and Actions — the Core Configuration Unit
An agent is built from Topics and Actions. Each Topic defines an area of expertise — including the description (used by the LLM to route requests), instructions, and available actions. Actions are the discrete tasks the agent can perform: Flows, Apex methods, external service calls, prompt templates, or standard actions like escalate to human. Exam questions often present a requirement and ask which action type or topic configuration is correct.
Guardrails and Agent Instructions
Guardrails are negative constraints — they tell the agent what it must never do (e.g., never discuss pricing changes, never make commitments on behalf of finance). Agent instructions define tone, persona, and scope. Both are critical for safe, on-brand deployment. The exam tests the difference between positive instructions (what to do) and guardrails (what not to do).
Einstein Trust Layer for Agentforce
The Einstein Trust Layer protects customer data when Agentforce sends prompts to external LLMs. It masks PII automatically, enforces zero data retention by model providers, and logs all AI activity for audit. This is a compliance-critical concept — the exam tests knowledge of what the Trust Layer does and why it matters in an Agentforce deployment.
Data Cloud Grounding
Data Cloud provides Agentforce with unified customer profiles — enabling grounded responses based on real customer data. Without Data Cloud, an agent can only access data through explicit actions. With Data Cloud, the agent has broader context available at query time. Know when Data Cloud integration is required vs optional for a given agent scenario.
Channels and Escalation
Agentforce agents can be deployed across Experience Cloud, web chat, Slack, and messaging channels (SMS, WhatsApp). The Escalate to Agent standard action hands off the conversation — including full transcript — to Omni-Channel routing for a human agent. Know which channels require which configuration steps and when escalation is the appropriate action type.
User messages enter through a channel; the agent routes to a Topic, runs Actions (Flow, Apex, APIs, prompts). Outbound model calls pass through the Einstein Trust Layer. Data Cloud optionally grounds responses in a unified profile. Compare to merge-field grounding from core CRM when you study.
How to Pass the Agentforce Specialist Exam
The Agentforce Specialist exam is scenario-based — questions describe a business requirement or a deployed agent configuration and ask which setting, action type, or architectural decision is correct. Understanding the why behind each Agentforce design choice is more important than memorising feature lists.
Topics and Actions Scenarios
When a question asks “how does the agent know which topic to use?” — the answer is the Topic's natural language description. The LLM reads the description to route incoming requests. When a question asks “what does the agent do within a topic?” — the answer is an Action (Flow, Apex, Prompt Template, external service, or standard action). If a scenario requires the agent to retrieve real-time customer data, the answer is typically a Flow action or an Integration Procedure — not a Prompt Template.
Einstein Trust Layer Questions
The Trust Layer question pattern: a scenario says “the company must ensure customer PII is never sent to external AI models.” The answer is always the Einstein Trust Layer — specifically its data masking capability. What the Trust Layer does: masks PII before sending prompts to the LLM, enforces zero data retention by LLM providers, and provides full audit logs. What it does NOT do: prevent hallucinations, guarantee factual accuracy, or act as a human reviewer. Questions that say “ensure the AI response is always accurate” are not answered by the Trust Layer.
Prompt Templates and Grounding
Prompt templates let you standardise LLM instructions with merge fields from Salesforce records. When a question asks “how do you ensure the agent references the specific account record when responding?” — the answer involves grounding the prompt with merge fields from the account. When a question mentions needing unified customer history across multiple data sources, Data Cloud grounding is the answer. Know the difference: merge field grounding (from standard Salesforce objects) vs Data Cloud grounding (unified profile across data sources).
Human Escalation and Channel Scenarios
When a scenario says “the agent should transfer the conversation to a human agent when it cannot resolve the issue” — the answer is the “Escalate to Human Agent” standard action with Omni-Channel routing. The agent passes the full transcript to the human agent. When a scenario asks which channels Agentforce supports — know that it supports Experience Cloud, web chat, Slack, SMS, and WhatsApp. Each channel has specific configuration requirements tested in scenario questions.
Exam Strategy
The Agentforce Specialist exam is relatively new and evolves with each Salesforce release. Prioritise the official Trailhead Agentforce Specialist Trailmix as your primary study resource — it is the most current and aligned to the actual exam outline. Passing score is approximately 65% (39/60 questions). Aim for 75%+ on full mock exams before booking. Candidates with hands-on Agentforce sandbox experience (building and testing actual agents with Topics and Actions) consistently report higher first-attempt pass rates.
Exam Section Difficulty Heatmap
Which sections are a gimme vs which ones trap confident candidates. Use this to prioritise your final-week revision.
| Exam Section | Difficulty | Study Tip |
|---|---|---|
| Agentforce Configuration | Hard | Topics, Instructions, and Actions are distinct concepts — confusing them is the most common failure point. |
| Platform and Security | Moderate | Permission sets for agent access, Data Cloud connections, and org-wide security implications. |
| Agent Capabilities and Optimization | Trap ⚠ | Apex @InvocableMethod vs Auto-Launched Flow actions — know which to recommend per scenario. |
| Integration and Best Practices | Hard | Data Cloud grounding vs standard object access — agents do not automatically access all Salesforce data. |
Difficulty based on analysis of common candidate errors across each exam section.
Salesforce Certified Agentforce Specialist Practice Questions (With Explanations)
Test your knowledge with these 15 sample questions.
What is the primary responsibility of an Agentforce Specialist?
Key takeaway: Certified Agentforce Specialists manage and optimize Agentforce and have deep understanding of both Salesforce platform configuration and Agentforce capabilities.
What is a Topic in Agentforce?
Key takeaway: Topics define the agent's scope — each topic specifies the instructions, tone, and available actions for a particular type of request such as order management or billing enquiries.
What is an Agent Action in Agentforce?
Key takeaway: Agent Actions are the executable steps available within a topic.
Agentforce integrates with which Salesforce capability for unified customer data context?
Key takeaway: Data Cloud provides unified customer profiles that Agentforce can query to ground agent responses with accurate, real-time customer context.
What is the Einstein Trust Layer and why is it important for Agentforce?
Key takeaway: The Einstein Trust Layer ensures that customer data is protected when Agentforce interacts with external LLMs — masking sensitive fields, preventing data retention by model providers, and logging all AI activity for audit.
Get the Full Question Bank
Most candidates book the exam after scoring 75%+ on full mocks.
If you're planning to test this quarter, aim to complete full mocks at least 10–14 days before your exam date.
Want to ensure you pass on your first try? Request our full 60-question mock exams, a personalized study plan, and pricing details by filling out the contact form. You can also reach out to km.krishnamohan25@gmail.com.
Request Mock Exams & Study PlanNext Certifications to Consider
After this certification, common next steps in the admin track or consultant track:
Salesforce Certified Agentforce Specialist Exam FAQs
- What is on the Salesforce Certified Agentforce Specialist exam syllabus (Spring '26)?
- The syllabus follows Salesforce's official Agentforce Specialist exam guide: four weighted areas — Agentforce Configuration (25%), Platform and Security (25%), Agent Capabilities and Optimization (25%), and Integration and Best Practices (25%). Expect scenario questions on Topics and Actions, guardrails vs instructions, Einstein Trust Layer, Data Cloud grounding, channels, and human escalation. Use the section weightage, architecture overview, and key concepts on this page to match the current Spring '26 outline.
- Is the Salesforce Agentforce Specialist exam hard?
- It is scenario-heavy and still relatively new, so many candidates find it tough until they have built agents hands-on. Use the difficulty heatmap on this page: Agentforce Configuration and Integration and Best Practices are often the steepest sections; Platform and Security is usually moderate. Budget sandbox time for Topics, Actions, Einstein Trust Layer, Data Cloud grounding, and human escalation paths.
- What is Agentforce?
- Agentforce is Salesforce's AI-powered agent solution that helps automate customer interactions using AI agents that can answer questions and perform tasks.
- Do I need Platform Administrator before Agentforce Specialist?
- Yes, Platform Administrator knowledge is recommended. You should have hands-on experience configuring and optimizing AI agents in Salesforce.
- What is the Agentforce Specialist passing score and exam fee in Spring '26?
- The Agentforce Specialist exam has 60 multiple-choice questions, 105 minutes, and a passing score of 65%. The exam fee is $200 USD (retake $100 USD). It is a relatively new credential with content updated for the latest Agentforce capabilities.
- What topics are covered in the Agentforce Specialist exam?
- Key topics include: Agent Builder configuration, defining agent topics and actions, prompt templates, Einstein Trust Layer principles, Agentforce for Sales and Service use cases, grounding AI responses with Salesforce data, and distinguishing Agentforce agents from traditional Einstein bots. Focus on standard vs custom actions and when each is appropriate.
- What is the Einstein Trust Layer and why is it important for Agentforce?
- The Einstein Trust Layer is Salesforce's built-in security framework for AI. It masks PII before data reaches external LLMs, audits prompts and responses, and ensures no Salesforce customer data is used to train third-party AI models. The Agentforce Specialist exam tests how Trust Layer protects data during AI interactions and why it matters for enterprise AI governance.
- What is the difference between an Agentforce Topic and an Agentforce Action?
- A Topic defines an area of expertise — it tells the agent when a request falls within its scope (via a natural language description) and provides the context, instructions, and available Actions for that domain. An Action is the discrete task the agent executes within a Topic: this could be a Flow, an Apex method, an external API call, a Prompt Template, or a standard action like escalating to a human agent. Think of Topics as "departments" and Actions as "tasks within that department." The exam frequently presents a requirement and asks whether to configure a Topic, an Action, or both.
- What are Guardrails in Agentforce and how do they differ from Agent Instructions?
- Guardrails are negative constraints — explicit rules for what the agent must never do or say (e.g., "never make pricing commitments", "never discuss competitor products"). Agent Instructions are positive directives — they define the agent's persona, tone, response style, and scope. Guardrails prevent harmful or off-brand behaviour; Instructions guide on-brand, effective responses. The exam tests knowledge of both and asks candidates to identify which configuration element prevents a specific unwanted agent behaviour.
- How does Data Cloud grounding work with Agentforce?
- Data Cloud grounding provides Agentforce agents with access to unified customer profiles across all data sources, not just standard Salesforce CRM data. When Data Cloud grounding is enabled, the agent can retrieve real-time, consolidated customer context (purchase history, service interactions, marketing engagement) to produce more accurate, personalised responses. Without Data Cloud, the agent can only access data through explicit Flow or API actions triggered by the agent. The exam distinguishes between merge field grounding (from CRM records) and Data Cloud grounding (unified profiles across multiple data sources).
- What channels can Agentforce agents be deployed on?
- Agentforce agents can be deployed across Experience Cloud sites, Salesforce-embedded web chat, Slack, and messaging channels including SMS and WhatsApp. Each channel has specific configuration requirements: Experience Cloud channels require the agent to be activated on an Experience Cloud site; Slack channels require the Slack integration. The exam tests which channel configuration steps are required and how the human escalation (handoff) works differently across channels.
- What is the recommended study approach for Agentforce Specialist?
- The most effective preparation combines: (1) completing the official Agentforce Specialist Trailmix on Trailhead (this is directly aligned to the exam outline), (2) hands-on practice in an Agentforce sandbox — actually build an agent with Topics and Actions, test it in Agent Builder, and observe how the Trust Layer behaves, (3) review the Einstein Trust Layer documentation specifically, and (4) practice with scenario-based mock questions. Candidates with hands-on Agentforce implementation experience consistently report higher first-attempt pass rates. The exam evolves with each Salesforce release, so ensure you are studying Spring '26 materials.
- How is Agentforce Specialist different from the AI Associate certification?
- AI Associate is a foundational, conceptual exam (40 questions, $75, 70 min) that tests AI literacy: AI terminology, Salesforce Einstein product categories, and responsible AI principles. It does not require any hands-on configuration experience. Agentforce Specialist is a practitioner-level exam (60 questions, $200, 105 min) that tests the ability to configure, deploy, and optimise actual Agentforce agents — Topics, Actions, Guardrails, Prompt Templates, and Trust Layer. AI Associate is a recommended foundation before Agentforce Specialist, though not a formal prerequisite.
- Are there free Salesforce Agentforce Specialist practice questions?
- Yes. This page includes 15 free sample questions with explanations — scenario-style, similar to the real exam. Use them before you book; aim for steady scores above the passing threshold on full timed sets.
- How should I prepare for the Agentforce Specialist certification exam?
- Use the official Agentforce Specialist Trailmix, then build at least one agent in a sandbox (Topics, Actions, Trust Layer behavior). Prioritise the difficulty heatmap “Hard” sections, review the FAQs on this page, and schedule the exam when your mock scores are consistent.
- Where is the official Salesforce Agentforce Specialist exam guide?
- Salesforce publishes the official exam guide in the Trailhead certification catalog (exam name: Salesforce Certified Agentforce Specialist). Cross-check the published outline with this page’s weightage and topics — we align content to that guide for exam prep.