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 IAM Architect Exam Tips (Winter '26): How to Pass Identity & Access Management

The Identity & Access Management Architect exam tests your ability to design secure authentication and authorisation architectures for Salesforce. These tips focus on OAuth flows, SSO patterns, and the identity federation scenarios that make up the majority of exam questions.

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

65%

Passing Score

$200

Exam Fee

Quick Answer: What IAM Architect Tests

  • OAuth flows — All five OAuth 2.0 flows, when each is appropriate, and the security trade-offs. JWT Bearer Token and Web Server flows are the most tested for enterprise scenarios.
  • SAML and SSO — SAML 2.0 configuration (IdP-initiated vs. SP-initiated), federation with external identity providers, and Just-in-Time (JIT) provisioning.
  • Connected Apps and scopes — Connected App design, OAuth scopes, IP restrictions, session policies, and when to use Named Credentials vs. Connected Apps for integrations.

Highest-Weight Exam Sections

Salesforce Identity Fundamentals28%
Single Sign-On (SSO)26%
Connected Apps17%
Delegated Authentication and Multi-Factor12%

Identity Fundamentals + SSO = 54%. OAuth flows and SAML configuration are your most critical study areas.

Scenario Strategy: How to Approach IAM Questions

IAM questions describe an authentication or integration scenario and ask which OAuth flow, SAML configuration, or identity pattern is correct. The key is identifying who initiates the flow and whether a user is involved.

  • Server-to-server with no user interaction = JWT Bearer Token flow. User logs in via web browser = Web Server flow. Mobile app with user = User-Agent flow. Legacy system with no browser = Username-Password (flag as insecure but still tested).
  • For SSO questions: IdP-initiated means the user starts at the identity provider; SP-initiated means the user starts at Salesforce. Know both flows and which metadata needs to be exchanged.
  • JIT provisioning creates/updates Salesforce users on first login using attributes in the SAML assertion — use it when you cannot pre-provision users in bulk.
  • For MFA questions: Salesforce requires MFA for all users. Verify whether a third-party MFA (from an IdP like Okta) satisfies the Salesforce MFA requirement — it does if configured correctly.

Mock-Test Benchmark Before Booking

76%+ on 3 timed full mocks before booking

IAM Architect has a steep learning curve for candidates who haven't configured SSO or OAuth in a real environment. Build a Connected App, configure SSO with an identity provider, and test each OAuth flow in a sandbox before sitting the exam.

3 Concepts That Fail Most Identity & Access Management Architect Candidates

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

1. OAuth 2.0 Flows — Authorization Code vs JWT Bearer vs Client Credentials

Authorization Code flow is for user-facing apps where a human logs in (most common). JWT Bearer flow is for server-to-server integration where a trusted server asserts a user identity without a login prompt. Client Credentials flow is for machine-to-machine with no user context. Candidates use Authorization Code for server integrations — the exam expects JWT Bearer for server-to-server with user context assertion and Client Credentials for pure system calls.

2. Named Credentials vs Auth. Providers — Outbound vs Inbound Identity

Named Credentials store the endpoint URL, authentication method, and credentials for Salesforce making outbound callouts to external systems. Auth. Providers configure Salesforce as a service provider (SP) for inbound Single Sign-On — external users log in via an external Identity Provider (IdP). Candidates configure Named Credentials for SSO — the exam expects Auth. Provider + SAML or OIDC for SSO and Named Credentials for outbound callouts.

3. Delegated Authentication vs SSO — Custom Login vs Federated Identity

Delegated Authentication calls a custom web service endpoint to validate Salesforce login credentials against an external system (legacy LDAP integration). SAML/OIDC SSO federates identity by trusting an external IdP's assertion without re-validating credentials. Delegated Auth is legacy and should not be recommended for new implementations — the exam expects SAML or OIDC SSO for modern identity federation.

Frequently Asked Questions

What is the Salesforce IAM Architect exam format?
The Salesforce Identity & Access Management Architect exam has 60 multiple-choice questions, a 105-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 SSO, OAuth, SAML, and identity federation architecture.
What are the highest-weight IAM Architect exam sections?
Salesforce Identity Fundamentals (28%) and Single Sign-On (26%) together account for 54% of the IAM Architect exam. OAuth flows, SAML configuration, and Connected App design are the most heavily tested topics.
What is the hardest part of the IAM Architect exam?
OAuth flow selection is the most nuanced section — candidates must know all five OAuth flows (Web Server, User-Agent, JWT Bearer Token, Username-Password, Device), when each is appropriate, and the security implications of each. SAML vs. OAuth decision-making for SSO scenarios is also heavily tested.
What prerequisites help with the IAM Architect exam?
Salesforce Administrator (ADM-201) knowledge of profiles, permission sets, and the Salesforce security model is the best foundation. Real experience configuring SSO with an identity provider (Okta, Azure AD, Ping), setting up Connected Apps, and troubleshooting OAuth flows is essential.
What concepts do most Identity & Access Management Architect candidates get wrong?
The most commonly misunderstood topics for the Identity & Access Management Architect exam are: (1) OAuth 2.0 Flows — Authorization Code vs JWT Bearer vs Client Credentials; (2) Named Credentials vs Auth. Providers — Outbound vs Inbound Identity; (3) Delegated Authentication vs SSO — Custom Login vs Federated Identity. 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 Identity Access Management Architect candidates fail questions about OAuth 2.0 Flows?
Authorization Code flow is for user-facing apps where a human logs in (most common). JWT Bearer flow is for server-to-server integration where a trusted server asserts a user identity without a login prompt. Client Credentials flow is for machine-to-machine with no user context. Candidates use Authorization Code for server integrations — the exam expects JWT Bearer for server-to-server with use...
Why do most Identity Access Management Architect candidates fail questions about Named Credentials vs Auth. Providers?
Named Credentials store the endpoint URL, authentication method, and credentials for Salesforce making outbound callouts to external systems. Auth. Providers configure Salesforce as a service provider (SP) for inbound Single Sign-On — external users log in via an external Identity Provider (IdP). Candidates configure Named Credentials for SSO — the exam expects Auth. Provider + SAML or OIDC for...
Why do most Identity Access Management Architect candidates fail questions about Delegated Authentication vs SSO?
Delegated Authentication calls a custom web service endpoint to validate Salesforce login credentials against an external system (legacy LDAP integration). SAML/OIDC SSO federates identity by trusting an external IdP's assertion without re-validating credentials. Delegated Auth is legacy and should not be recommended for new implementations — the exam expects SAML or OIDC SSO for modern identit...

Related Exam Tips

Start IAM Architect Prep

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