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

MuleSoft Developer II Exam Tips (Winter '26): How to Pass

The MuleSoft Developer II exam tests advanced Mule 4 development skills including API-led connectivity architecture, Anypoint Platform management, and async messaging. These tips focus on the three-layer API architecture, deployment patterns, and Anypoint MQ that dominate the exam.

KM

Written and reviewed by Krishna Mohan — ADM-201, PD1, PD2, App Builder & Consultant certified. Updated for Winter '26. Methodology · Contact

Exam At a Glance

60

Questions

120 min

Time Limit

70%

Passing Score

$200

Exam Fee

Quick Answer: What MuleSoft Developer II Tests

  • API-led connectivity — Three-tier architecture (Experience, Process, System APIs), how to correctly layer business logic, API specifications with RAML, and the trade-offs of each architecture decision.
  • Anypoint Platform management — CloudHub deployment, API Manager, API policies (rate limiting, client ID enforcement, OAuth), API Analytics, and environment management across development, staging, and production.
  • Async messaging and batch — Anypoint MQ (queues, exchanges, message acknowledgement), batch processing (batch jobs, batch steps, on-complete phase), and when to use async patterns vs. synchronous flows.

Highest-Weight Exam Sections

API-Led Connectivity Design28%
Anypoint Platform Management22%
Anypoint MQ and Async Patterns20%
Batch Processing16%

API-led + Platform Management + Anypoint MQ = 70%. Three-tier architecture design is the highest-value study area.

Scenario Strategy: How to Approach MuleSoft Developer II Questions

Questions describe an enterprise integration requirement and ask which architecture pattern, Anypoint component, or deployment approach is correct. Think about the three-layer API model first — which layer should own the logic described in the scenario?

  • For API-led architecture questions: System APIs connect to core backends (SAP, databases, legacy systems) — no business logic here. Process APIs orchestrate data from multiple System APIs and implement business logic. Experience APIs tailor output for a specific channel (mobile, web portal). Logic in the wrong layer = wrong answer.
  • For Anypoint MQ questions: queues deliver to one consumer; exchanges (topic/fifo) can fan out to multiple subscribers. Acknowledgement modes: AUTO (ack on receive), MANUAL (ack after processing), NONE (no ack). Use MANUAL when you need guaranteed processing before acknowledging.
  • For API policy questions: Rate Limiting throttles by request count per time window. Client ID Enforcement requires consumers to pass a client ID. OAuth 2.0 policy validates access tokens. Apply policies in API Manager — they attach to an API instance, not the Mule application code directly.

Mock-Test Benchmark Before Booking

78%+ on 3 timed full mocks before booking (70% passing score)

Developer II has a 70% passing score — the same as Developer I but with more complex architectural content. Real API-led project experience is important: candidates who have designed and implemented a three-tier MuleSoft architecture perform significantly better on the architecture design questions.

3 Concepts That Fail Most MuleSoft Developer II Candidates

These are not the hardest topics — they are the ones where candidates are most confidently wrong. Learn the distinction early.

1. Batch Processing — Batch Job Phases and Error Handling

Mule Batch Jobs have three phases: Input (record collection), Process (on-record parallel processing), and On Complete (summary handling after all records are processed). Errors in the Process phase are per-record — a failed record does not stop other records from processing. Candidates design Batch Jobs expecting a single error to halt processing — the exam expects per-record error handling and the acceptPolicy setting that controls how failures affect the batch.

2. Async vs Sync Flow Execution — When Flow Runs Are Detached

By default, flows called via Flow Reference execute synchronously (in the same thread as the caller). Async scopes run a sub-flow asynchronously in a new thread, and the caller does not wait for the result. Candidates use Async scope expecting the caller to receive the async response — Async is fire-and-forget. Know when to use each based on whether the caller needs the processing result.

3. Watermark in Polling — Tracking Processed Records Across Runs

A Watermark in a Scheduler-triggered polling flow tracks the last-processed record (e.g., last timestamp) so subsequent runs only retrieve new or updated records. Without Watermark, every run re-processes all records. Candidates implement custom tracking variables for incremental polling — the exam expects the built-in Watermark feature with an Object Store for persistence across Mule runtime restarts.

Frequently Asked Questions

What is the MuleSoft Developer II exam format?
The MuleSoft Developer II exam has 60 multiple-choice questions, a 120-minute time limit, a 70% passing score, and a $200 fee ($100 retake). It tests advanced Mule 4 development: API-led connectivity, Anypoint MQ messaging, batch processing, custom API policies, and advanced DataWeave.
What are the highest-weight MuleSoft Developer II exam sections?
API-Led Connectivity (28%) and Anypoint Platform Management (22%) together account for 50% of the exam. Designing three-tier API-led architectures (Experience, Process, System), deploying to CloudHub, using Anypoint MQ for async messaging, and implementing API policies are the most heavily tested topics.
What is API-led connectivity and why is it tested so heavily?
API-led connectivity is MuleSoft's recommended integration architecture pattern. It organises integrations into three layers: System APIs (connect to core systems like SAP, Salesforce), Process APIs (orchestrate business logic combining system APIs), and Experience APIs (tailored for specific consumer channels like mobile or web). The exam tests when to place logic at each layer.
Do I need MuleSoft Developer I before Developer II?
MuleSoft Developer I is the recommended (and effectively required) prerequisite for Developer II. Developer II assumes complete knowledge of Developer I content — flows, connectors, DataWeave, error handling — and builds advanced patterns on top. Candidates without Developer I knowledge will struggle significantly with Developer II material.
What concepts do most MuleSoft Developer II candidates get wrong?
The most commonly misunderstood topics for the MuleSoft Developer II exam are: (1) Batch Processing — Batch Job Phases and Error Handling; (2) Async vs Sync Flow Execution — When Flow Runs Are Detached; (3) Watermark in Polling — Tracking Processed Records Across Runs. Candidates are most confidently wrong on these — learn the distinctions early to avoid losing marks on questions you expect to get right.
Why do most Mulesoft Developer Ii candidates fail questions about Batch Processing?
Mule Batch Jobs have three phases: Input (record collection), Process (on-record parallel processing), and On Complete (summary handling after all records are processed). Errors in the Process phase are per-record — a failed record does not stop other records from processing. Candidates design Batch Jobs expecting a single error to halt processing — the exam expects per-record error handling an...
Why do most Mulesoft Developer Ii candidates fail questions about Async vs Sync Flow Execution?
By default, flows called via Flow Reference execute synchronously (in the same thread as the caller). Async scopes run a sub-flow asynchronously in a new thread, and the caller does not wait for the result. Candidates use Async scope expecting the caller to receive the async response — Async is fire-and-forget. Know when to use each based on whether the caller needs the processing result.
Why do most Mulesoft Developer Ii candidates fail questions about Watermark in Polling?
A Watermark in a Scheduler-triggered polling flow tracks the last-processed record (e.g., last timestamp) so subsequent runs only retrieve new or updated records. Without Watermark, every run re-processes all records. Candidates implement custom tracking variables for incremental polling — the exam expects the built-in Watermark feature with an Object Store for persistence across Mule runtime r...

Related Exam Tips

Start MuleSoft Developer II Prep

After this exam, consider Platform Developer II or Platform App Builder next.