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

Salesforce Integration Architect Exam Tips (Winter '26): How to Pass

The Salesforce Integration Architect exam tests your ability to design enterprise integration architectures connecting Salesforce to external systems. These tips focus on integration pattern selection, API strategy, and the architectural trade-offs the exam tests.

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

105 min

Time Limit

62%

Passing Score

$200

Exam Fee

Quick Answer: What Integration Architect Tests

  • Integration pattern selection — When to use REST vs. SOAP vs. Bulk API vs. Streaming API vs. Platform Events, and the trade-offs of each for specific integration scenarios.
  • Middleware architecture — When to recommend point-to-point integration vs. middleware (MuleSoft, Dell Boomi) vs. a custom ESB, and the governance implications of each choice.
  • Security for integrations — OAuth flows (User-Agent, Username-Password, JWT Bearer, Web Server), Named Credentials, and certificate management for secure system-to-system communication.

Highest-Weight Exam Sections

Integration Architecture27%
Salesforce Platform Architecture23%
Security Architecture18%
Data Integration16%

Integration Architecture + Platform Architecture = 50%. Integration pattern selection is your single most important study topic.

Scenario Strategy: How to Approach Integration Questions

Every Integration Architect question describes an integration requirement and asks which pattern or technology fits. Answer by identifying three constraints: volume, latency requirement, and system ownership.

  • High volume + batch = Bulk API. Real-time + low latency = REST API. Event-driven = Platform Events. Message queue = MuleSoft or custom middleware. Learn this decision matrix cold.
  • For middleware questions: point-to-point is fast but creates spaghetti as systems multiply. Recommend middleware whenever the scenario involves 3+ integrated systems or complex transformation requirements.
  • For security questions: know all four OAuth flows and when to use each. JWT Bearer = server-to-server without user interaction. Web Server = user-initiated. Username-Password = legacy/not recommended. User-Agent = deprecated.
  • For Change Data Capture questions: CDC is for near-real-time sync of Salesforce changes to external systems. Platform Events is for publishing custom events. Know the difference and when each applies.

Mock-Test Benchmark Before Booking

76%+ on 3 timed full mocks before booking

Integration Architect has a lower first-attempt pass rate than most architect component exams. The questions require genuine integration project experience — candidates who have only studied theory consistently fail middleware and OAuth flow questions.

3 Concepts That Fail Most Integration Architect Candidates

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

1. Real-Time vs Near-Real-Time vs Batch — Choosing the Right Integration Pattern

Real-time integration executes synchronously during a transaction (callout mid-save) — adds latency and risk of timeout. Near-real-time uses Platform Events or Change Data Capture to trigger async processing within seconds. Batch syncs data on a schedule (hourly, nightly). Candidates recommend real-time callouts for data that needs to be "current" — the exam expects near-real-time (Platform Events) for that pattern and real-time only for blocking decisions (credit checks, inventory holds).

2. Idempotency — Why Retry Logic Requires Idempotent Operations

An idempotent operation produces the same result whether executed once or multiple times. Integration retries can cause duplicate records or double-charges if operations are not idempotent. Exam scenarios about retry handling expect idempotency design: use upsert (not insert) on retry, include a correlation ID, check if a record already exists before creating. Candidates design retry without idempotency safeguards.

3. Salesforce Connect vs Heroku Connect vs MuleSoft — Three Different Integration Approaches

Salesforce Connect exposes external data as External Objects in real time without importing it (best for small record sets queried infrequently). Heroku Connect maintains a Postgres replica of Salesforce data for high-performance querying. MuleSoft API-led connectivity builds reusable integration APIs across systems. Candidates recommend MuleSoft for all integration scenarios — the exam tests which tool fits the specific requirement.

Frequently Asked Questions

What is the Salesforce Integration Architect exam format?
The Salesforce Integration Architect exam has 60 multiple-choice questions, a 120-minute time limit, a 63% passing score, and a $200 fee. It is a component exam for the System Architect role-based credential and tests integration strategy, API patterns, and middleware architecture.
What are the highest-weight Integration Architect exam sections?
Integration Architecture (27%) and Salesforce Platform Architecture (23%) together account for 50% of the exam. API design patterns, middleware selection (MuleSoft vs. point-to-point vs. custom), and Platform Events are the most heavily tested topics.
What prerequisites do I need for the Integration Architect exam?
There are no hard prerequisites, but Salesforce recommends Platform Developer I (PD1) and experience with REST/SOAP APIs before attempting Integration Architect. Real integration project experience — connecting Salesforce to ERP, marketing, or billing systems — is essential for the scenario-based questions.
What is the difference between Integration Architect and Platform Developer II for integrations?
Platform Developer II tests how to write integration code (REST callouts, SOAP, Named Credentials, HttpCalloutMock). Integration Architect tests when and how to choose the right integration pattern at an architectural level — REST vs. SOAP vs. bulk API vs. streaming, middleware vs. point-to-point vs. ESB, and security architecture for integrations.
What concepts do most Integration Architect candidates get wrong?
The most commonly misunderstood topics for the Integration Architect exam are: (1) Real-Time vs Near-Real-Time vs Batch — Choosing the Right Integration Pattern; (2) Idempotency — Why Retry Logic Requires Idempotent Operations; (3) Salesforce Connect vs Heroku Connect vs MuleSoft — Three Different Integration Approaches. 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 Integration Architect candidates fail questions about Real-Time vs Near-Real-Time vs Batch?
Real-time integration executes synchronously during a transaction (callout mid-save) — adds latency and risk of timeout. Near-real-time uses Platform Events or Change Data Capture to trigger async processing within seconds. Batch syncs data on a schedule (hourly, nightly). Candidates recommend real-time callouts for data that needs to be "current" — the exam expects near-real-time (Platform Eve...
Why do most Integration Architect candidates fail questions about Idempotency?
An idempotent operation produces the same result whether executed once or multiple times. Integration retries can cause duplicate records or double-charges if operations are not idempotent. Exam scenarios about retry handling expect idempotency design: use upsert (not insert) on retry, include a correlation ID, check if a record already exists before creating. Candidates design retry without id...
Why do most Integration Architect candidates fail questions about Salesforce Connect vs Heroku Connect vs MuleSoft?
Salesforce Connect exposes external data as External Objects in real time without importing it (best for small record sets queried infrequently). Heroku Connect maintains a Postgres replica of Salesforce data for high-performance querying. MuleSoft API-led connectivity builds reusable integration APIs across systems. Candidates recommend MuleSoft for all integration scenarios — the exam tests w...

Related Exam Tips

Start Integration Architect Prep

After this exam, consider Application Architect or System Architect next.