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 Advanced Administrator exam prep is the recommended 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 1.5K+ passed this month • Updated for 2026 • No sign-up required

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 Exam
System Architect
Advanced

Salesforce Certified System Architect – Complete Winter '26 Guide

Certified System Architects focus on off-platform systems, integration, and securing access between systems. They're also skilled at managing governance and testing capabilities for deployment and ongoing Salesforce modification requirements.

60
Questions
~68%
Passing Score
120 min
Duration
$400
Exam Fee

Salesforce Certified System Architect Exam Weightage by Section

Data Architecture25%
Integration Architecture25%
Sharing and Visibility25%
Development Lifecycle25%

Exam Topics

Off-Platform SystemsIntegrationSecurityGovernanceTestingDeploymentRelease ManagementBest PracticesMiddlewareAPIs

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

Most Salesforce exams test scenario-based decisions. For Salesforce Certified System Architect, 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.

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.

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.

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
Data ArchitectureHardCombines Data Architect topics — know the cross-domain implications.
Integration ArchitectureHardSame as Integration Architect — pattern selection and trade-offs.
Sharing and VisibilityTrap ⚠Sharing model and visibility — often scenario-based with multiple correct-looking answers.
Development LifecycleModerateRelease and environment strategy — standard with architect lens.

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 Architect Certifications

After this architect certification, progress toward CTA or other architect domains:

Salesforce 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.
What certifications do I need before System Architect?
You need Application Architect and multiple other certifications. System Architect is advanced-level and requires years of complex implementation experience.
Are there free practice questions for the Salesforce Certified System Architect 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 System Architect 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 System Architect?
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.