Trailblaze Prep
All CertificationsCertification PathBecome a CTASearchContact Us

Choose your role

Associate
Administrator
Developer
Consultant
Marketing
Architect
Accredited Professional
Salesforce Certified Advanced Field Service Accredited ProfessionalSalesforce Certified B2B Commerce Admin Accredited ProfessionalSalesforce Certified B2B Commerce Developer Accredited ProfessionalSalesforce Certified Communications Cloud Accredited ProfessionalSalesforce Certified Consumer Goods Cloud Accredited ProfessionalSalesforce Certified Consumer Goods Cloud Trade Promotion Management Accredited ProfessionalSalesforce Certified Contact Center Accredited ProfessionalSalesforce Certified CPQ and Billing Consultant Accredited ProfessionalSalesforce Certified Energy and Utilities Cloud Accredited ProfessionalSalesforce Certified Financial Services Cloud Accredited ProfessionalSalesforce Certified Health Cloud Accredited ProfessionalSalesforce Certified Heroku Developer Accredited ProfessionalSalesforce Certified Loyalty Management Accredited ProfessionalSalesforce Certified Manufacturing Cloud Accredited ProfessionalSalesforce Certified Marketing Cloud Advanced Cross Channel Accredited ProfessionalSalesforce Certified Marketing Cloud Intelligence Accredited ProfessionalSalesforce Certified Marketing Cloud Personalization Accredited ProfessionalSalesforce Certified Media Cloud Accredited ProfessionalSalesforce Certified Net Zero Cloud Accredited ProfessionalSalesforce Certified Order Management Administrator Accredited ProfessionalSalesforce Certified Order Management Developer Accredited ProfessionalSalesforce Certified Process Automation Accredited ProfessionalSalesforce Certified Public Sector Solutions Accredited Professional
Sales
Designer
Tableau
Associate
Administrator
Developer
Consultant
Marketing
Architect
Accredited Professional
Salesforce Certified Advanced Field Service Accredited ProfessionalSalesforce Certified B2B Commerce Admin Accredited ProfessionalSalesforce Certified B2B Commerce Developer Accredited ProfessionalSalesforce Certified Communications Cloud Accredited ProfessionalSalesforce Certified Consumer Goods Cloud Accredited ProfessionalSalesforce Certified Consumer Goods Cloud Trade Promotion Management Accredited ProfessionalSalesforce Certified Contact Center Accredited ProfessionalSalesforce Certified CPQ and Billing Consultant Accredited ProfessionalSalesforce Certified Energy and Utilities Cloud Accredited ProfessionalSalesforce Certified Financial Services Cloud Accredited ProfessionalSalesforce Certified Health Cloud Accredited ProfessionalSalesforce Certified Heroku Developer Accredited ProfessionalSalesforce Certified Loyalty Management Accredited ProfessionalSalesforce Certified Manufacturing Cloud Accredited ProfessionalSalesforce Certified Marketing Cloud Advanced Cross Channel Accredited ProfessionalSalesforce Certified Marketing Cloud Intelligence Accredited ProfessionalSalesforce Certified Marketing Cloud Personalization Accredited ProfessionalSalesforce Certified Media Cloud Accredited ProfessionalSalesforce Certified Net Zero Cloud Accredited ProfessionalSalesforce Certified Order Management Administrator Accredited ProfessionalSalesforce Certified Order Management Developer Accredited ProfessionalSalesforce Certified Process Automation Accredited ProfessionalSalesforce Certified Public Sector Solutions Accredited Professional
Sales
Designer
Tableau

Updated for Winter '26

New to this track? Our Salesforce Certified MuleSoft Developer I exam prep is the required 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 250+ passed this month • Updated for 2026 • No sign-up required

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 MuleSoft Developer II 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 MuleSoft Developer II exam through the official Salesforce certification portal.

Register for Exam
MuleSoft Developer II
Intermediate

Salesforce Certified MuleSoft Developer II – Complete Winter '26 Guide

Certified MuleSoft Developers II are seasoned developers who have proven knowledge and skills to independently work on production-ready Mule applications in a DevOps environment.

60
Questions
~70%
Passing Score
120 min
Duration
$200
Exam Fee

Salesforce Certified MuleSoft Developer II Exam Weightage by Section

Advanced Mule Development30%
API Design and Security25%
Error Handling and Performance25%
Deployment and Operations20%

Exam Topics

Advanced MuleDataWeaveError HandlingCloudHubDevOpsSecurityPerformanceTestingReusabilityProduction Patterns

Exam Tips

  • 1Advanced Mule Development is 30%—know advanced Mule concepts, patterns, and best practices.
  • 2Understand API Design and Security: RESTful APIs, OAuth, and API security.
  • 3Know error handling and performance: error handling strategies and performance optimization.
  • 4Be ready for "how do you develop X?" questions.

Prerequisites

  • MuleSoft Developer I
  • Advanced Mule development experience

Focus Areas

  • Advanced Mule Development
  • API Design and Security
  • Error Handling and Performance
  • Deployment and Operations

Study Strategy

Develop advanced Mule applications.

Design APIs, handle errors, optimize performance.

Align with the exam outline.

Exam Format and First-Attempt Readiness

Most Salesforce exams test scenario-based decisions. For Salesforce Certified MuleSoft Developer II, 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.

MuleSoft Developer II: Key Concepts for the Exam

Advanced DataWeave: Functions and Modules

DataWeave II advanced features: pattern matching (match/case for type-based branching), named functions (fun myFunc(arg) = ...), lambda functions (vars), and custom modules (import from external .dwl files). Complex scenarios: transforming nested arrays, handling nulls with default and orElse, type coercion. The exam presents complex transformation requirements and tests whether the developer can write efficient, readable DataWeave code — understanding when to use map vs reduce vs mapObject is critical.

Batch Processing in Mule

Batch Job scope processes large datasets in records. Phases: On Complete (runs after all records processed), On Input (optional pre-processing), Batch Steps (process each record). Batch Aggregator accumulates records before processing — commit size defines how many records are committed together. Failed records can be routed separately. Database.Stateful equivalent: use Batch Job Record Variables to carry state. The exam tests Batch Job configuration for high-volume data processing scenarios.

API Security: Policies and OAuth

Anypoint API Manager applies security policies to deployed APIs. Common policies: Client ID Enforcement (all clients must register and send client ID), OAuth 2.0 Token Enforcement (validate Bearer tokens), IP Allowlist, Rate Limiting (throttle by client or overall). Policies are applied through API Manager and injected into the runtime automatically — no code changes needed. The exam tests which policy combination to use for a given security requirement (authentication + authorisation + throttling).

Performance: Scatter-Gather and Cache Scope

Scatter-Gather executes multiple routes in parallel and aggregates responses — ideal for fan-out calls where all responses are needed. Each route runs concurrently; Scatter-Gather waits for all routes to complete before aggregating. Cache Scope stores responses for a configurable TTL — reduces redundant external calls. Reconnection strategies handle transient connectivity failures. Async processing (VM connector, queues) decouples processing speed from response time. The exam tests when each performance pattern is appropriate.

CI/CD with Anypoint: Maven and CloudHub Deployment

Anypoint Maven Plugin enables automated deployment in CI/CD pipelines. pom.xml configuration includes CloudHub credentials, region, and worker configuration. Anypoint CLI provides command-line deployment and management. API Autodiscovery links a deployed Mule app to an API definition in API Manager — enables policy enforcement. The deployment pipeline: unit tests (MUnit) → build JAR → deploy to CloudHub → run integration tests → promote to production. The exam tests CI/CD pipeline design and Maven plugin configuration.

How to Pass the MuleSoft Developer II Exam

The MuleSoft Developer II exam tests advanced development skills: complex DataWeave transformations, async patterns, API security implementation, and advanced deployment strategies. Expect deep technical questions on Anypoint Platform internals.

Advanced DataWeave

Go beyond basic mappings: know how to use modules (Arrays, Strings, Math), pattern matching, recursive functions, and how to write reusable DataWeave modules. Know how to handle complex nested JSON and XML transformations.

Async & Batch Processing

Know Batch Jobs in Mule 4: Batch Job scope, Batch Step, Batch Aggregator, and On Complete phases. Understand when to use batch processing vs. scatter-gather for parallel processing of large data sets.

API Security Policies

Know how to apply policies in API Manager: Rate Limiting, JWT Validation, OAuth 2.0 (client credentials, authorization code), CORS, and IP whitelist. Understand policy ordering and how custom policies are built.

Advanced Deployment Strategies

Know the difference between CloudHub 1.0, CloudHub 2.0, and Runtime Fabric deployment models. Understand zero-downtime deployments, persistent queues, and how to configure multiple workers for HA.

Performance Tuning

Know how to tune thread pools (Grizzly, CPU intensive, CPU lite, I/O), configure watermark-based polling, and use caching (Object Store) to reduce redundant API calls in Mule applications.

Exam Section Difficulty Heatmap

Which sections are a gimme vs which ones trap confident candidates. Use this to prioritise your final-week revision.

Exam SectionDifficultyStudy Tip
Advanced Mule DevelopmentHardError handling, batch processing, and reconnection — scenario-heavy.
API Design and SecurityTrap ⚠Policies vs custom security — when to apply which at API vs proxy level.
Error Handling and PerformanceModerateFault handling and tuning — know the default behaviours.
Deployment and OperationsEasyRuntime Manager and deployment — factual if you have used the platform.

Difficulty based on analysis of common candidate errors across each exam section.

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.

Candidates who complete full mock exams report strong first-time pass rates. For pricing and access, use the contact form below or kindly reach out to km.krishnamohan25@gmail.com.

Get Full Question Bank

Next Certifications After Developer

After this certification, common next steps in the developer track:

Salesforce Certified MuleSoft Developer II Exam FAQs

What is covered on the Salesforce Certified MuleSoft Developer II exam?
This page shows the section-wise exam weightage so you know exactly which topics carry the most weight. Use the exam topics and practice questions above to align your study with the official outline.
What is the difference between MuleSoft Developer I and II?
Developer I focuses on building basic Mule applications and APIs. Developer II covers advanced topics like error handling, performance optimization, API design patterns, and deployment strategies.
Do I need MuleSoft Developer I before Developer II?
While not strictly required, Developer I is highly recommended. Developer II assumes you have Developer I knowledge and builds on it with advanced concepts.
Are there free practice questions for the Salesforce Certified MuleSoft Developer II exam?
Yes. This page includes 15 free sample practice questions with explanations. Use them to test your knowledge before booking the exam.
How do I prepare for the Salesforce Certified MuleSoft Developer II certification?
Use the exam tips, prerequisites, and study strategy on this page. Focus first on the highest-weighted sections, then take the sample practice questions. Schedule the exam when you consistently score well on practice tests.
Where can I find the official exam outline for Salesforce Certified MuleSoft Developer II?
Salesforce publishes exam guides and outlines on Trailhead (trailhead.salesforce.com). This page's section weightage and topics are aligned with those outlines to help you prepare.