INTEGRATION-ARCHITECTURE-DESIGNER Exam Details

  • Exam Code
    :INTEGRATION-ARCHITECTURE-DESIGNER
  • Exam Name
    :Salesforce Certified Integration Architecture Designer
  • Certification
    :Salesforce Certifications
  • Vendor
    :Salesforce
  • Total Questions
    :245 Q&As
  • Last Updated
    :Feb 28, 2026

Salesforce INTEGRATION-ARCHITECTURE-DESIGNER Online Questions & Answers

  • Question 11:

    Universal Containers has a call center that would like to have a dashboard that updates in real time and shows information about phone calls that have been completed today (recorded in the Activity object). There are several teams in the call center, and each dashboard should only show calls from that team. An employee can start the board each morning, but after that no further user interaction should be needed.

    What is a recommended pattern that would minimize implementation time?

    A. Develop a Visaulforce page that uses the Steaming API.
    B. Use Heroku to develop a dashboard page that uses the REST API.
    C. Use native Salesforce dashboard functionality
    D. Develop a Visualforce page that uses JavaScript Remoting.

  • Question 12:

    Universal Containers wants to gather information from a third-party application to update shipping information for an order inside Salesforce. A salesperson could trigger an update and the user interface would refresh with the current status. Which are two recommended options for this when utilizing a Remote Process Invocation-Request and Reply pattern?

    A. A batch Apex job that performs an Apex SOAD or HTTP callout in a synchronous manner.
    B. A custom Visualforce page or button that initiates an Apex REST callout in a synchronous manner.
    C. A custom Visualforce page or button that initiates an Apex SOAP callout in a synchronous manner.
    D. A trigger that's invoked from Salesforce Data changes, performs and Apex SOAP in a synchronous manner

  • Question 13:

    What is the recommended approach to implement a login authentication call for an inbound integration call to Salesforce?

    A. Perform the login call only when the session/access token has expired or no longer works.
    B. Perform the login authentication call before each integration call to Salesforce every time.
    C. Only perform a single login call forever and store the session/access token permanently.
    D. Perform the login authentication call before a single transaction of multiple calls to Salesforce.

  • Question 14:

    Customer is evaluating Platform Events solution and would like help in comparing/contrasting it with Outbound Message for a real-time / near-real time needs. They expect 3,000 consumers of messages from Salesforce.Which three considerations should be evaluated and highlighted when deciding between the solutions? Choose 3 answers

    A. Both Platform Events and Outbound Message offer declarative means for asynchronous near-real time needs. They aren't best suited for real-time integrations.
    B. In both Platform Events and Outbound Messages, the event messages are retried by and delivered in sequence, and only once. Salesforce ensures there is no duplicate message delivery.
    C. Message sequence is possible in Outbound Message but not guaranteed with Platform Events. Both offer very high reliability. Fault handling and recovery are fully handled by Salesforce.
    D. Number of concurrent subscribers to Platform Events is capped at 2,000. An Outbound Message configuration can pass only 100 notifications in a single messages to a SOAP end point.
    E. Both Platform Events and Outbound Message are highly scalable. However, unlike Outbound Message, only Platform Events have Event Delivery and Event Publishing limits to be considered.

  • Question 15:

    Universal Containers (UC) is a global financial company. UC support agents would like to open bank accounts on the spot for a customer who is inquiring ab UC products. During opening the bank account process, the agents execute credit checks for the customers through external agencies. At a given time, up to 30 concurrent rewill be using the service for performing credit checks for customers.

    What error handling mechanisms should be built to display an error to the agent when the credit verification process failed?

    A. In case the verification process is down, Use mock service to send the response to the agent.
    B. Handle verification process error in the Verification Webservice API in case there is a connection issue to the Webservice if it responds with an error.
    C. Handle integration errors in the middleware in case the verification process is down, thenthe middleware should retry processing the request multiple times.
    D. In case the verification process is down, use fire and forget mechanism instead of request and reply to allow the agent to get the response back when the service is bar online.

  • Question 16:

    Universal Containers (UC) uses Salesforce to create and manager accounts and opportunities. With Salesforce being the master of records, the opportunities on existing accounts are required to be updated with product usage statistics from an on-premise usage tracking system that is capable of participating in contract-first integration.

    Which three steps should the Integration Architect consider given that UC does not want any custom development in Salesforce?

    A. Create a Workflow outbound message during Opportunity creation and provide the Opportunity ID and Session ID to the remote system.
    B. Use a REST API callback to update the Opportunity record with the product usage data from the remote system.
    C. Create a Process Builder outbound message during Opportunity creation and provide the Opportunity ID and Session ID to the remote system.
    D. Use a SOAP API callback to update the Opportunity record with the product usage data from the remote system.
    E. Generate a partner WSDL in Salesforce and provide it to the remote system to create a client stub.

  • Question 17:

    Northern Trail Outfitters (NTO) has hired an Integration Architect to design the integrations between existing systems and a new instance of Salesforce. NTO has the following requirements:

    1. Initial load of 2M Accounts, 5. 5M Contacts, 4. 3M Opportunities, and 45k Products into the new org.

    2. Notification of new and updated Accounts and Contacts needs to be sent to 3 external systems.

    3. Expose custom business logic to 5 external applications in a highly secure manner.

    4. Schedule nightly automated dataflows, recipes and data syncs. Which set of APIs are recommended in order to meet the requirements?

    A. Bulk API, Chatter REST API, Apex SOAP API, Tooling API
    B. Bulk API, Chatter REST API, Apex REST API, Analytics REST API
    C. Bulk API, Streaming API, Apex REST API, Analytics REST API
    D. Bulk API, Streaming API, Apex SOAP API, Analytics REST API

  • Question 18:

    Northern Trail Outfitters (NTO) uses Salesforce to track leads, opportunities and order details that convert leads to customers. However, Orders are managed by an external (remote) system. Sales representatives want to view and update

    real-time order information in Salesforce. NTO wants the data to only persist in the external system.

    Which type of Integration should an architect recommend to meet this business requirement?

    A. Data Visualization
    B. Data Synchronization
    C. Process Orchestration
    D. Batch Processing

  • Question 19:

    Universal containers built an integration using the Bulk API to load records from a legacy system into Salesforce, Parallel option with batch size 1000 was used However, the batches often fail due to " Max CPU time exceeded"errors which

    could be resolved with a Similar batch size.

    What are two risks involved with batch sizes that are too small?

    Choose 2 answers

    A. Possibilityof hitting the daily limit for number of batches.
    B. possibility of very long bulk job execution times
    C. Possibility of failures due to record-locking errors.
    D. Possibility of hitting the "Too many concurrent batches" limit.

  • Question 20:

    An Integration Architect has designed a mobile application for Salesforce users to get data while on the road using a custom UI. The application is secured with oAuth and is currently functioning well. There is a new requirement where the

    mobile application needs to obtain the GPS coordinates and store it on a custom geolocation field.

    The geolocation field is secured with Field Level Security, so users can view the value without changing it.

    What should be done to meet the requirement?

    A. The mobile device makes a SOAP API inbound call. The mobile device receives a REST Apex callout call.
    B. The mobile device makes a REST API inbound call.
    C. The mobile device makes a REST Apex inbound call.

Tips on How to Prepare for the Exams

Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Salesforce exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your INTEGRATION-ARCHITECTURE-DESIGNER exam preparations and Salesforce certification application, do not hesitate to visit our Vcedump.com to find your solutions here.