All Practice Exams

100+ Free Salesforce Integration Architect Practice Questions

Pass your Salesforce Certified Integration Architect exam on the first try — instant access, no signup required.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
Not publicly published Pass Rate
100+ Questions
100% Free
1 / 100
Question 1
Score: 0/0

An order management system must call Salesforce, get a confirmation number back, and use that response to update the customer in real time. Which Salesforce integration pattern best fits this requirement?

A
B
C
D
to track
2026 Statistics

Key Facts: Salesforce Integration Architect Exam

60

Scored Questions

Official exam guide

105 min

Time Limit

Official exam guide

67%

Passing Score

Official exam guide

$400

Registration Fee

Architect-tier pricing

$200

Retake Fee

Salesforce certification policy

33%

Largest Domain

Translate Needs to Integration Requirements

6

Integration Patterns

Salesforce Integration Patterns and Practices

2-3 yrs

Recommended Experience

Official exam guide

The Salesforce Integration Architect exam uses 60 scored multiple-choice questions in 105 minutes with a 67% passing score and a $400 architect-tier registration fee. The blueprint splits into five domains weighted 33%, 24%, 23%, 14%, and 6%, with pattern selection and API/middleware design carrying the most points. Salesforce recommends 2-3 years of integration architecture experience and lists no required prerequisite credential, though candidates often hold App Builder, Platform Developer I, or Sharing & Visibility Designer first.

Sample Salesforce Integration Architect Practice Questions

Try these sample questions to test your Salesforce Integration Architect exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1An order management system must call Salesforce, get a confirmation number back, and use that response to update the customer in real time. Which Salesforce integration pattern best fits this requirement?
A.Fire and Forget
B.Request and Reply
C.Batch Data Synchronization
D.Data Virtualization
Explanation: Remote Process Invocation - Request and Reply is the synchronous pattern where the caller waits for a response payload to use immediately. The order system needs the confirmation number returned in the same call, which is the defining characteristic of Request and Reply.
2Which Salesforce integration pattern is best suited for publishing a Salesforce event to multiple downstream systems where the publisher does not need to know who the subscribers are?
A.Request and Reply
B.Fire and Forget via Platform Events
C.Remote Call-In
D.Data Virtualization
Explanation: Platform Events implement the Fire and Forget pattern with a publish/subscribe model. The publisher emits the event, and one or more subscribers consume it independently. The publisher does not need to know subscriber identity, which is the key decoupling advantage.
3Nightly, an ERP must push 5 million updated price records into Salesforce. Latency does not matter, but the load must complete inside the maintenance window. Which integration pattern is most appropriate?
A.Request and Reply via REST API
B.Streaming via Platform Events
C.Batch Data Synchronization via Bulk API
D.Data Virtualization via Salesforce Connect
Explanation: Batch Data Synchronization fits scheduled, high-volume, latency-tolerant transfers. Bulk API 2.0 is the recommended Salesforce technology for moving millions of records efficiently within a maintenance window.
4A Service Cloud agent needs to see the latest inventory from a back-office system inside Salesforce, but the data must NOT be persisted in Salesforce. Which integration pattern fits?
A.Batch Data Synchronization
B.Data Virtualization (External Objects)
C.UI Update Based on Data Changes
D.Fire and Forget
Explanation: Data Virtualization, implemented in Salesforce via External Objects (Salesforce Connect with OData or a custom Apex adapter), surfaces external data on demand without storing copies in Salesforce. This is exactly the no-persistence inventory lookup scenario.
5Which Salesforce integration pattern enables a Lightning component to refresh automatically when a related record changes elsewhere in the org?
A.UI Update Based on Data Changes
B.Request and Reply
C.Batch Data Synchronization
D.Remote Call-In
Explanation: UI Update Based on Data Changes is the Salesforce pattern for refreshing a UI when underlying data changes. It is typically implemented through the Streaming API, Change Data Capture, or empApi in Lightning to push notifications to the browser.
6An external billing system needs to call Salesforce to create Cases and update Accounts when its own records change. Which Salesforce pattern describes this?
A.Remote Process Invocation - Request and Reply
B.Remote Call-In
C.Data Virtualization
D.Fire and Forget
Explanation: Remote Call-In is the pattern for an external system invoking Salesforce. Implementation options include REST/SOAP API, Apex REST/SOAP web services, Bulk API, and Composite API depending on volume and shape.
7Which Salesforce API is recommended for loading more than 50,000 records efficiently with parallel processing and minimal API call overhead?
A.REST API
B.SOAP API
C.Bulk API 2.0
D.Composite API
Explanation: Bulk API 2.0 is purpose-built for large data loads. It uses CSV, automatically batches records, processes asynchronously, and consumes far fewer API call counts than per-record REST or SOAP calls.
8Which Salesforce API allows a mobile client to request only the specific fields it needs in one round trip, in a typed schema-driven way?
A.SOAP API
B.REST API
C.GraphQL API
D.Bulk API 1.0
Explanation: GraphQL API lets the client specify the exact fields and related records to return in a single, typed query. This reduces over-fetching and round trips, which is why it is favored for mobile and rich UI clients.
9An external system needs to subscribe to a high-throughput stream of Salesforce events with replay support and gRPC efficiency. Which API should the architect recommend?
A.Streaming API (CometD)
B.Pub/Sub API (gRPC)
C.Apex REST
D.Outbound Messages
Explanation: Pub/Sub API is the modern Salesforce event API that uses gRPC and HTTP/2 for high-throughput, low-latency event streaming with native replay support. Salesforce recommends Pub/Sub API over the legacy CometD-based Streaming API for new builds.
10An integration must create an Account, a Contact related to that Account, and an Opportunity in a single all-or-nothing operation. Which Salesforce API is the best fit?
A.Bulk API 2.0
B.Composite API with composite request
C.Streaming API
D.Tooling API
Explanation: Composite API supports chaining multiple subrequests in one HTTP call, with referenceId substitution for new record IDs and an allOrNone flag for transactional semantics. This is exactly the parent-child-grandchild create scenario.

About the Salesforce Integration Architect Exam

The Salesforce Certified Integration Architect exam validates an architect's ability to assess business requirements and design secure, scalable, and maintainable integrations across Salesforce and external systems. Topics span the six Salesforce integration patterns, API selection (REST, SOAP, Bulk, Streaming, Composite, GraphQL, Pub/Sub, Apex REST), identity and authentication including OAuth 2.0 flows and Named Credentials, governor and platform limits, asynchronous Apex, error handling, and middleware/MuleSoft positioning.

Assessment

60 multiple-choice / multiple-select questions, plus up to 5 unscored items on some deliveries

Time Limit

105 minutes

Passing Score

67%

Exam Fee

$400 (Salesforce / Kryterion Webassessor)

Salesforce Integration Architect Exam Content Outline

33%

Translate Needs to Integration Requirements

Translate functional and non-functional business requirements into integration patterns, identify the right pattern from the six Salesforce integration patterns, and justify pattern selection given data volume, latency, coupling, and timing constraints.

24%

Designing Integration Solutions

Choose the right Salesforce API (REST, SOAP, Bulk 1.0/2.0, Streaming, Composite, GraphQL, Pub/Sub, Apex REST/SOAP), apply middleware (MuleSoft, ESB, API gateway) appropriately, design canonical data models, and recommend Salesforce Connect, Heroku Connect, or Platform Events when fit.

23%

Building Integration Solutions

Implement OAuth 2.0 flows (Web Server, JWT Bearer, User-Agent, Username-Password, Refresh Token, Device, Client Credentials, SAML Bearer), configure Named Credentials and External Credentials, design Apex callouts, asynchronous Apex (Future, Queueable, Batch, Scheduled), Platform Events, and Change Data Capture (CDC).

14%

Maintenance and Operation of Integration Solutions

Design for resilience: error handling, idempotency, replay, dead-letter queues, retry policies, monitoring, governor and concurrent API limits, file size constraints, Bulk vs REST decisions, and integration testing patterns.

6%

Backup and Archiving Strategies

Design data retention, archive, and backup integration strategies including third-party backup tools, Bulk API extraction, Big Objects, and external storage tradeoffs.

How to Pass the Salesforce Integration Architect Exam

What You Need to Know

  • Passing score: 67%
  • Assessment: 60 multiple-choice / multiple-select questions, plus up to 5 unscored items on some deliveries
  • Time limit: 105 minutes
  • Exam fee: $400

Keys to Passing

  • Complete 500+ practice questions
  • Score 80%+ consistently before scheduling
  • Focus on highest-weighted sections
  • Use our AI tutor for tough concepts

Salesforce Integration Architect Study Tips from Top Performers

1Memorize the six Salesforce integration patterns and what makes each one fit: timing, direction, message size, and coupling. Pattern recognition drives the largest single domain (33%).
2Build a decision tree for API selection: Bulk 2.0 for large volumes, REST for record-level CRUD, Composite to chain calls under one transaction, Streaming/Pub-Sub for event distribution, and GraphQL for shape-driven mobile reads.
3Practice picking the right OAuth 2.0 flow for the scenario: Web Server for interactive web apps, JWT Bearer for server-to-server with no user, Refresh Token for long-lived sessions, Client Credentials for headless service integrations.
4Memorize Named Credential vs External Credential vs custom OAuth callout differences; the exam rewards Named Credentials over Apex-managed secrets every time.
5Drill governor and platform limits: total concurrent long-running calls (10), total daily API limit, 12 MB SOAP payload limit, 6 MB sync Apex heap, Bulk file size limits, Platform Event publish limits.
6Know when to use Future vs Queueable vs Batch vs Scheduled Apex and why Queueable beats Future for chaining; expect at least one async-pattern question per domain.
7Understand middleware positioning: when MuleSoft / API gateway is justified vs point-to-point, canonical models vs direct mapping, and orchestration vs choreography for fire-and-forget flows.
8Practice resilience design: idempotency keys, retry with exponential backoff, dead-letter queues, replayable Platform Events with Replay ID, and error-handling for Bulk API job failures.

Frequently Asked Questions

How many questions are on the Salesforce Integration Architect exam?

Salesforce's official exam guide lists 60 scored multiple-choice and multiple-select questions plus up to 5 unscored items on some deliveries, with a 105-minute time limit.

What is the current passing score?

The Integration Architect exam has a 67% passing score. Salesforce does not curve the result, and the score appears as pass or fail with section-level feedback only.

What does the exam cost and is there a retake fee?

The registration fee is US$400 because this is an architect-tier exam. The retake fee is US$200, and you must wait at least 24 hours between attempts.

Are there prerequisites for the Integration Architect exam?

There is no formal prerequisite credential. Salesforce recommends 2-3 years of Salesforce experience and 1-2 years specifically architecting integration solutions. Many candidates hold Platform Developer I, App Builder, or Sharing & Visibility Designer first.

Which integration patterns does the exam test most?

The Translate Needs to Integration Requirements domain is 33% of the exam, so candidates must master the six patterns: Remote Process Invocation - Request and Reply, Remote Process Invocation - Fire and Forget, Batch Data Synchronization, Remote Call-In, UI Update Based on Data Changes, and Data Virtualization.

Which APIs and authentication flows should I prioritize?

Be fluent in REST, SOAP, Bulk 1.0 vs 2.0, Streaming/Pub-Sub, Composite, GraphQL, and Apex REST/SOAP. For authentication, master OAuth 2.0 Web Server, JWT Bearer, Refresh Token, and Client Credentials flows along with Named Credentials, External Credentials, and Mutual TLS.

How long is the credential valid?

The credential does not expire on a fixed date, but architects must complete release-based maintenance modules on Trailhead each cycle to keep the certification active.