Associate
Administrator
Developer
Consultant
Marketing
Architect
Accredited Professional
Sales
Designer
Tableau
Claude

Updated for Summer '26

New to this track? Our Salesforce Certified MuleSoft Developer exam prep is the required first step. See our certification path to understand where this certification fits. The Salesforce Certified MuleSoft Developer II exam weights Advanced Mule Development most heavily (30%) — see the full breakdown, study tips, and practice questions below. See our full study guide for deep section coverage. Ready to book? Read our exam tips and study plan.

60 practice Qs250+ students/moUpdated Summer '26Verified vs official exam guide

Join 250+ passed this month • Updated for 2026 • No sign-up required

Updated for Summer '26

This page is reviewed every release to stay aligned with the current exam blueprint.

Exam Blueprint Aligned

Section weightages match the official Summer '26 exam guide

Questions Reviewed

Practice questions and explanations checked each release cycle

Works on Any Device

Full practice experience on phone, tablet, or desktop

Free, No Sign-Up

Start practicing immediately — no account or email required

Krishna Mohan — 5x Salesforce certified author

Written & verified by Krishna Mohan

5× Salesforce Certified · 12+ years in data engineering & Salesforce · Updated for Summer '26

ADM-201PD1PD2App BuilderSales Cloud Consultant

Verify on Trailblazer.me · Methodology · Contact

Who is the MuleSoft Developer II exam for?

  • Experienced MuleSoft developers: You’ve passed Developer I and want to validate your ability to build production-grade Mule applications independently.
  • DevOps-focused integration engineers: You manage CI/CD pipelines for Mule apps and want to certify your Maven, MUnit, and CloudHub deployment expertise.
  • Lead developers: You design advanced integration patterns and want the credential to back your architectural decisions on MuleSoft projects.

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

Exam data verification: questions, duration, passing score, fees, and section coverage were checked against official source references on .

Official sources: Exam guide·Salesforce exam pricing·Independent prep resource; no braindumps or leaked exam questions.

MuleSoft Developer IIIntermediate

Salesforce Certified MuleSoft Developer II – Complete Summer '26 Guide

The advanced MuleSoft developer exam. Expect deep questions on DataWeave modules, batch processing, API security policies, CI/CD pipelines with Maven, and production deployment strategies.

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

The Salesforce Certified MuleSoft Developer II exam has 60 questions in 120 min, passing score 70%. Most Salesforce exams test scenario-based decisions — focus on when to use each feature, not just terms.

  • Study Advanced Mule Development and API Design and Security first — together they carry 55% of the exam.
  • Do timed question sets. Build pacing and confidence.
  • Review why wrong answers are wrong. It improves scenario reasoning.
  • Book the exam once your mock scores are steady above 70%.
Is the MuleSoft Developer II Exam Hard?
MuleSoft Developer II Exam Format Explained

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.

DataWeave transformation pipeline (exam mental model)

A DataWeave script declares its output directive (e.g. %dw 2.0 output application/json), then maps the input payload — regardless of source format (JSON, XML, CSV) — into the target structure using functions like map, filter, and pluck.

Input payload in any format enters a DataWeave script with header directives and transformation body, producing output in the declared target formatInput PayloadJSON / XML / CSVDataWeave Script%dw 2.0 output application/jsonmap(), filter(), pluck(), reduce()reshapes structure and field namesOutput PayloadDeclared target format

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.

Is the Salesforce Certified MuleSoft Developer II Exam Hard?

DifficultyChallenging; plan about 8-16 weeks of focused prep.

Book When ReadyScore 85%+ on three timed mocks before scheduling.

Use Practice, Not DumpsOriginal practice questions build skill without risking your credential.

Exam format: 60 questions, 120 min, 70% passing score.

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? Contact us for more information on our full 60-question mock exams and a personalized study plan. You can also reach out to km.krishnamohan25@gmail.com.

Request Mock Exams & Study Plan

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.

Next Certifications After Developer

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