Updated for Summer '26
See our certification path to understand where this certification fits in your career. The Salesforce Certified System Architect exam weights Data Architecture most heavily (25%) — 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.
Join 1.5K+ 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

Written & verified by Krishna Mohan
5× Salesforce Certified · 12+ years in data engineering & Salesforce · Updated for Summer '26
Who is the System Architect exam for?
- Enterprise Architects: Architects who design multi-system integration landscapes connecting Salesforce with ERP, middleware, and legacy systems across the enterprise.
- Integration Specialists: Developers and architects who build API-led integrations, configure OAuth authentication flows, and design for high-volume data exchange.
- IT Leaders: Technical leaders responsible for org strategy, release management, and governance for complex Salesforce deployments spanning multiple business units.
Exam Fees & Registration
Exam Fee
$400
One-time registration fee
Retake Fee
$200
If you need to retake the exam
Comparing certs? View all Salesforce exam fees in one place →
Certification Validity
Your Salesforce Certified System Architect 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 System Architect exam through the official Salesforce certification portal.
Register for ExamExam data verification: questions, duration, passing score, fees, and section coverage were checked against official source references on .
Official sources: Salesforce exam pricing·Independent prep resource; no braindumps or leaked exam questions.
Salesforce Certified System Architect – Complete Summer '26 Guide
This page covers the System Architect credential — earned by passing four component exams (Platform Developer I, Integration Architect, IAM Architect, Dev Lifecycle and Deployment Architect) plus a final proctored System Architect exam, not a single test. Practice questions here focus on the Integration Architect domain: API patterns (sync, async, batch), OAuth authentication flows, middleware design, sandbox strategy, and release management for multi-system Salesforce deployments.
This credential is earned by passing 5 component exams — not a single test:
Salesforce Certified System Architect Exam Weightage by Section
Exam Topics
Exam Tips
- 1All four pillars are 25%—no section can be skipped.
- 2Data Architecture: LDV, data modeling, integration patterns for data.
- 3Integration Architecture: APIs, middleware, event-driven architecture.
- 4Be ready for "design a solution that meets X and Y requirements."
Prerequisites
- •Application Architect
- •Years of complex implementation experience
Focus Areas
- •Data Architecture
- •Integration Architecture
- •Sharing and Visibility
- •Development Lifecycle
Study Strategy
Treat each pillar as a mini-exam.
Use CTA scenario practice to get used to open-ended design questions.
Time management is critical.
Exam Format and First-Attempt Readiness
The Salesforce Certified System Architect exam has 60 questions in 105 min, passing score ~58%. Most Salesforce exams test scenario-based decisions — focus on when to use each feature, not just terms.
- Study Data Architecture and Integration Architecture first — together they carry 50% 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 ~58%.
Is the System Architect Exam Hard?
Is the System Architect Exam Hard?
The System Architect exam is broad and demanding because it spans integration architecture, identity management, deployment strategy, and multi-org governance. Unlike domain-specific architect exams, System Architect tests your ability to connect all of these areas into a cohesive enterprise solution. The breadth of topics means you cannot rely on depth in one area alone.
- 60 questions in 120 minutes — questions cover integration patterns, OAuth flows, sandbox strategy, and release management in a single exam.
- ~68% passing score — about 41 correct answers, with cross-domain questions that require knowledge of both integration and deployment topics.
- Integration pattern selection — expect scenarios asking you to choose between synchronous, asynchronous, batch, and event-driven patterns based on latency and volume constraints.
- Enterprise breadth — the exam tests middleware design (MuleSoft API-led connectivity), SSO architecture, multi-org strategy, and release governance in a single sitting.
Pass Rate Guidance
Book the exam when you can match any integration scenario to the correct pattern, explain OAuth flows and SAML SSO configuration, and design a sandbox-to-production promotion strategy.
System Architect Exam Format Explained
System Architect Exam Format Explained
The exam is proctored online or in-person. Here is the format:
Total Questions
60 scored questions
Time Limit
105 min
Passing Score
~58%
Question Type
Multiple-choice & multiple-select
How Many Questions Are Scenario-Based?
Questions describe enterprise integration and deployment scenarios, asking you to select the right combination of architecture pattern, authentication flow, and governance approach.
Best Way to Pass on Your First Attempt
- Master integration patterns: Know request-reply, fire-and-forget, batch ETL, and Change Data Capture — and the exact criteria for choosing each (latency, volume, error handling).
- Study API-led connectivity: Understand MuleSoft’s System, Process, and Experience API layers and when native Salesforce integration is sufficient vs. when middleware is warranted.
- Review identity and SSO: SAML 2.0 SP-initiated vs. IdP-initiated flows, OAuth 2.0 JWT Bearer and Client Credentials flows, and My Domain requirements appear frequently.
- Know sandbox and release strategy: Match sandbox types to development phases, compare change sets vs. CLI vs. unlocked packages, and design deployment sequencing for complex orgs.
System Architect: Key Concepts for the Exam
Integration Patterns: Choosing the Right Approach
The exam presents an integration scenario and asks which pattern applies. Request-reply (REST/SOAP callout) — synchronous, caller waits for response; use for real-time data retrieval. Fire-and-forget (Platform Events, async queue) — caller publishes and moves on; use when immediate response is not needed. Batch ETL — high-volume data movement on a schedule. Change Data Capture — streams field-level record change events for near-real-time synchronisation. Point-to-point vs hub-and-spoke: as integration count grows, hub-and-spoke (middleware) reduces coupling.
Authentication Patterns: OAuth 2.0 Flows
Web Server Flow — user-facing; redirects to Salesforce login, returns authorisation code exchanged for token. JWT Bearer Flow — server-to-server; no user interaction; client signs a JWT assertion with a certificate. Client Credentials Flow — machine-to-machine; client ID + secret exchanged for access token without a user. Device Flow — for devices without browsers. Named Credentials store the endpoint and auth details in Salesforce, keeping credentials out of Apex code. Connected Apps define OAuth scopes, IP restrictions, and session policies.
API-Led Connectivity and Middleware (MuleSoft)
API-led connectivity organises APIs in three layers: System APIs wrap individual backend systems (ERP, legacy), exposing a stable contract regardless of the system's protocol. Process APIs orchestrate business logic across multiple System APIs — composable, reusable. Experience APIs tailor data for specific consumers (mobile app, partner portal). MuleSoft Anypoint Platform implements this pattern. Understand when native Salesforce integration (REST, Platform Events) is sufficient vs when middleware is warranted (protocol mismatch, fan-out orchestration, message transformation).
Sandbox Strategy and Release Management
Sandbox types by size and use: Developer (5 MB data, metadata only, for development), Developer Pro (1 GB, for larger teams), Partial Copy (5 GB, subset of production data, for testing), Full Copy (full production replica, for load testing and final UAT). Deployment tools: Change Sets (org-to-org, no version control), Salesforce CLI + Metadata API (source-driven, supports Git), Unlocked Packages (modular, versioned, dependency-aware). The exam tests which combination of sandbox type and deployment tool fits a given governance requirement.
Identity, SSO, and My Domain
SAML 2.0 enables SSO: Salesforce can act as Identity Provider (issues assertions to external apps) or Service Provider (receives assertions from an external IdP like Okta or Azure AD). My Domain is required for SSO — it provides the custom login URL and enables domain-based login policies. Delegated Authentication sends the user's credentials to an external web service for validation (legacy approach). OAuth handles API access delegation, not web SSO. Know the trust chain: IdP issues SAML assertion → SP validates the assertion's signature using the IdP's certificate → session created.
Unlike Application Architect, System Architect requires a final proctored exam after the four component certifications. Platform Developer I is the only exam shared with Application Architect.
How to Pass the Salesforce System Architect Exam
The System Architect credential validates expertise in multi-system integration and enterprise-scale Salesforce deployments. Focus on integration architecture patterns, data migration strategy, and managing complex org configurations.
Enterprise Integration Patterns
Know the full Enterprise Integration Patterns catalog applied to Salesforce: synchronous vs. asynchronous, point-to-point vs. hub-and-spoke, ESB, and event-driven architecture. Match each pattern to its ideal use case.
Data Migration Strategy
Understand how to plan data migration: data mapping, cleansing, load sequence (parent records before child records), external IDs for upsert, and how to validate data post-migration.
Multi-Org Architecture
Know the scenarios that require multiple orgs (geographies, business units, regulatory) vs. a single org with shared infrastructure. Understand org replication, data sharing between orgs, and Connected Orgs.
Governor Limits at Scale
Understand how governor limits affect architectural decisions: bulkification requirements, async patterns to bypass synchronous limits, and how to architect for high-volume data ingestion scenarios.
Salesforce Connect & External Objects
Know how External Objects (via Salesforce Connect / OData) provide real-time data virtualization. Understand when to use virtual data vs. replicating data into Salesforce, and the performance trade-offs.
Is the Salesforce Certified System Architect 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, 105 min, ~58% 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 PlanSalesforce Certified System Architect Exam FAQs
- What is covered on the Salesforce Certified System Architect 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 System Architect?
- System Architect is part of the Technical Architect path. It focuses on data architecture, integration architecture, sharing and visibility, and development lifecycle.
Next Architect Certifications
After this architect certification, progress toward CTA or other architect domains: