Passing Salesforce Integration-Architect Exam Using 2023 Practice Tests [Q30-Q52]

Share

Passing Salesforce Integration-Architect Exam Using 2023 Practice Tests

Integration-Architect Study Guide Brilliant Integration-Architect Exam Dumps PDF


The Salesforce Integration-Architect exam is intended for professionals who work as technical architects or integration engineers. These individuals are responsible for designing and implementing solutions that integrate different systems and data sources. They must have expert-level knowledge of Salesforce and be able to work with a variety of tools and technologies used in the integration process. Individuals who pass Integration-Architect exam are sought after by organizations looking to build robust and scalable integrations between Salesforce and other systems.

 

NEW QUESTION # 30
A company has an external system that processes and tracks orders. Sales reps manage their leads and opportunity pipeline in Salesforce. In the current state, the two systems are disconnected and processing orders requires a lot of manual entry on sales rep part. This creates delays in processing orders and incomplete data due to manual entry.
As a part of modernization efforts, the company decided to integrate Salesforce and the order management system. The following technical requirements were identified:
1. Orders need to be created in real time from salesforce
2. Minimal customization*, and code should be written due to a tight timeline and lack of developer resources
3. Sales reps need to be able to see order history and be able to see most up to date information on current order status.
4. Managers need to be able to run reports in Salesforce to see daily and monthly order volumes and fulfillment timelines.
5. The legacy system is hosted on premise and is currently connected to the Enterprise Service Bus (ESB). The ESB is flexible enough to provide any methods and connection types needed by salesforce team.
6. There are 1000 sales reps. Each user processes/creates on average 15 orders per shift. Most of the orders contain 20-30-line items.
How should an integration architect integrate the two systems based on the technical requirements and system constraints?

  • A. Use Salesforce big object, SOAP API and Dataloader.
  • B. Use Salesforce standard object, REST API and ETL.
  • C. Use Salesforce custom object, custom REST API and ETL.
  • D. Use Salesforce external object and OData connector.

Answer: C

Explanation:
Explanation
Using Salesforce custom object, custom REST API and ETL is a better solution than using Salesforce standard object, REST API and ETL. A custom object can store the order information and provide more flexibility and control over the data model, validation rules, triggers, etc. A custom REST API can be used to create orders in real time from Salesforce, using the ESB as a proxy to communicate with the legacy system. An ETL tool can be used to sync the order history and status from the legacy system to Salesforce, using the last modified date as a filter. This way, sales reps can see the order history and the most up-to-date information on current order status, and managers can run reports on order volumes and fulfillment timelines. A standard object, such as Order, may not meet all the business requirements and may require more customization than a custom object.
A standard REST API may not provide enough security and error handling for creating orders in real time.
Reference: Salesforce Integration Architecture Designer Resource Guide, page 18


NEW QUESTION # 31
Universal Containers (UC) owns a variety of cloud-based applications, including Salesforce, alongside several on premise applications. The on-premise applications are protected behind a corporate network with limited outside access to external systems.
UC would like to expose data from the on-premise applications to Salesforce for a more unified user experience. The data should be accessible from Salesforce in real-time.
Which two actions should be recommended to fulfill this system requirement?
Choose 2 answers

  • A. Run a batch job with an ETL tool from an on-premise server to move data to Salesforce.
  • B. Develop an application in Heroku that connects to the on-premisedatabase via an ODBC string and VPC connection.
  • C. Deploy MuleSoft to the on-premise network and design externally facing APIs to expose the data.
  • D. Develop custom APIs on the company's network that are invokable by Salesforce.

Answer: C,D

Explanation:
Explanation
The system requirement is to expose data from the on-premise applications to Salesforce for a more unified user experience in real-time. The possible actions that can fulfill this requirement are:
Answer B is valid because developing custom APIs on the company's network that are invokable by Salesforce can allow Salesforce to access the data from the on-premise applications in real-time. However, this action requires opening a firewall port or using a reverse proxy to allow Salesforce to communicate with the on-premise APIs securely3 Answer C is valid because deploying MuleSoft to the on-premise network and designing externally facing APIs to expose the data can also enable Salesforce to access the data from the on-premise applications in real-time. MuleSoft is an integration platform that can connect various systems and applications using APIs and standard protocols. MuleSoft can also handle security, orchestration, transformation, and other integration aspects.
Answer A is not valid because developing an application in Heroku that connects to the on-premise database via an ODBC string and VPC connection is not a real-time solution. Heroku is a cloud platform that can host web applications and services, but it cannot expose data from an on-premise database directly to Salesforce. To use Heroku for this purpose, an ETL tool or a middleware solution would be needed to synchronize the data between the on-premise database and Heroku, which would introduce latency and complexity to the integration.
Answer D is not valid because running a batch job with an ETL tool from an on-premise server to move data to Salesforce is also not a real-time solution. ETL stands for extract, transform, and load, which is a process of moving data from one system to another in batches. ETL tools can be used for data migration or integration, but they cannot provide real-time access to data from on-premise applications to Salesforce. ETL tools also have limitations on data volume, frequency, and reliability.
1: Bulk API Limits 2: Bulk API Features 3: Integrating with Salesforce using Custom Web Services :
MuleSoft Overview : Heroku Overview : ETL Overview


NEW QUESTION # 32
An Integration Architect has built a solution using REST API, updating Account, Contact, and other related information. The data volumes have increased, resulting in higher API calls consumed, and some days the limits are exceeded. A decision was made to decrease the number of API calls using bulk updates. The customer prefers to continue using REST API to avoid architecture changes.
Which REST API composite resources should the Integration Architect use to allow up to 200 records in one API call?

  • A. SObject Tree
  • B. SObject Collections
  • C. Composite
  • D. Batch

Answer: B

Explanation:
Explanation
SObject Collections is a REST API composite resource that allows you to create, update, or delete up to 200 records in one API call. You can specify the type of operation (create, update, or delete) for each record in the request body, and the response body will contain the status and IDs of each record. SObject Collections is suitable for bulk operations on records that are not related to each other1.
SObject Tree is another REST API composite resource that allows you to create up to 200 records in one API call. However, unlike SObject Collections, SObject Tree requires the records to be related to each other in a hierarchy. You can specify the parent and child records in a JSON tree structure, and the response body will contain the reference IDs and URLs of each record. SObject Tree is suitable for creating nested data in one request2.
Batch is a REST API composite resource that allows you to combine up to 25 requests in one API call. Each request can be a different type of operation (query, create, update, delete, etc.) on different objects. The response body will contain the status and results of each request. Batch is suitable for grouping multiple requests into one transaction3.
Composite is a REST API composite resource that allows you to execute a series of REST API requests in one API call. You can use the output of one request as the input of another request using a reference ID. The response body will contain the status and results of each request. Composite is suitable for chaining requests that depend on each other.
Therefore, the correct answer is A, because SObject Collections is the only REST API composite resource that allows bulk updates on records that are not related to each other.
References: 1: SObject Collections | REST API Developer Guide | Salesforce Developers 2: SObject Tree | REST API Developer Guide | Salesforce Developers 3: Batch | REST API Developer Guide | Salesforce Developers : [Composite | REST API Developer Guide | Salesforce Developers]


NEW QUESTION # 33
A company's cloud-based single page application consolidates data local to the application with data from on premise and 3rd party systems. The diagram below typifies the application's combined use of synchronous and asynchronous calls.
The company wants to use the average response time of its application's user interface as a basis for certain alerts. For this purpose, the following occurs:
1. Log every call's start and finish date and time to a central analytics data store.
2. Compute response time uniformly as the difference between the start and finish date and time - A to H in the diagram.
Which computation represents the end-to-end response time from the user's perspective?

  • A. Sum of A and H
  • B. Sum of A to H
  • C. Sum of A to F
  • D. Sum of A, G, and H

Answer: A

Explanation:
Explanation
The end-to-end response time from the user's perspective is the time elapsed between the user's request and the user's receipt of the final response. In the diagram, this corresponds to the sum of A and H, which are the durations of the synchronous calls from the user interface to the cloud-based application and back. The other durations (B to G) are either internal to the cloud-based application or asynchronous calls that do not affect the user's perception of response time. Therefore, the correct answer is D, because it represents the sum of A and
H.


NEW QUESTION # 34
Universal Containers (UC) uses Salesforce to track the following customer data:
1. Leads,
2. Contacts
3. Accounts
4. Cases
Salesforce is considered to be the system of record for the customer. In addition to Salesforce, customer data exists in an Enterprise Resource Planning (ERP) system, ticketing system, and enterprise data lake. Each of these additional systems have their own unique identifier. UC plans on using middleware to integrate Salesforce with the external systems.
UC has a requirement to update the proper external system with record changes in Salesforce and vice versa.
Which two solutions should an Integration Architect recommend to handle this requirement?
Choose 2 answers

  • A. Design an MDM solution that maps external ID's to the Salesforce record ID.
  • B. Use Change Data Capture to update downstream systems accordingly when a record changes.
  • C. Locally cache external ID'S at the middleware layer and design business logic to map updates between systems.
  • D. Store unique identifiers in an External ID field in Salesforce and use this to update the proper records across systems.

Answer: A,B


NEW QUESTION # 35
Universal Containers is a global financial company that sells financial products and services including, bank accounts, loans, and insurance. UC uses Salesforce Service cloud to service their customer via calls, live chat.
The support agents would open bank accounts on the spot for customers who are inquiring about UC bank accounts.
UC Core banking system is the system of record for bank accounts and all accounts opened in salesforce have to be synced in real-time to the core banking system. Support agents need to inform the customers with the newly created bank account ID which has to be generated from the core banking system.
Which integration pattern is recommended for this use case?

  • A. Use outbound message.
  • B. Use salesforce platform event.
  • C. Use request and reply.
  • D. Use streaming API to generate push topic.

Answer: C

Explanation:
Explanation
Using request and reply is the recommended integration pattern for this use case because it allows the support agents to send a request to the core banking system and receive a response with the bank account ID in real-time. This way, the support agents can inform the customers with the newly created bank account ID without any delay or inconsistency. Using streaming API to generate push topic is not a good solution because it is used for event-driven integration, not for web-service integration. Using outbound message is also not a good solution because it is a Salesforce-specific feature that uses SOAP web services, which may not be compatible with the core banking system. Using Salesforce platform event is also not a good solution because it is used for event-driven integration, not for web-service integration. Reference: Salesforce Integration Architecture Designer Resource Guide, page 29-30


NEW QUESTION # 36
A health care services company maintains a Patient Prescriptions System that has 50+ million records in a secure database. Their customer base and data set growing rapidly. They want to make sure that the following policies are enforced:
1. Identifiable patient prescriptions must exist only in their secure system's database and encrypted at rest.
2. Identifiable patient prescriptions must be made available only to people explicit authorized in the Patient Prescriptions System assigned nurses and doctors, patient, and people explicitly the patient may authorize.
3. Must be available only to verified and pre-approved people or legal entities.
To enable this, the company provides the following capabilities:
1. One-time use identity tokens for patients, nurses, doctors, and other people that expire within a few minutes.
2. Certificates for legal entities.
. RESTful services.
The company has a Salesforce Community Cloud portal for patients, nurses, doctors, and other authorized people. A limited number of employees analyze deidentified data in Einstein Analytics.
Which two capabilities should the integration architect require for the Community Cloud portal and Einstein Analytics?
Choose 2 answers

  • A. Bulk load for Einstein Analytics
  • B. Identity token data storage
  • C. Callouts to RESTful services
  • D. Encryption in transit and at rest

Answer: A,C

Explanation:
Explanation
The integration architect should require bulk load for Einstein Analytics and callouts to RESTful services for the Community Cloud portal and Einstein Analytics. Bulk load is a capability that allows loading large volumes of data into Einstein Analytics from external sources, such as the Patient Prescriptions System. This can be done securely by using encryption in transit and at rest, and by masking or removing any identifiable patient information from the data. Callouts to RESTful services are a capability that allows making requests to external web services from Salesforce, such as the Patient Prescriptions System. This can be done securely by using identity tokens or certificates for authentication and authorization, and by using encryption in transit and at rest12 References: How to Load Data into Einstein Analytics, Strengthen Your Data's Security with Shield Platform Encryption


NEW QUESTION # 37
Northern Trail Outfitters (NTO) has recently changed their Corporate Security Guidelines. The guidelines require that all cloud applications pass through a secure firewall before accessing on-premise resources. NTO is evaluating middleware solutions to integrate cloud applications with on-premise resources and services.
What are two considerations an Integration Architect should evaluate before choosing a middleware solution?
Choose 2 answers

  • A. The middleware solution enforces the OAuth security protocol.
  • B. The middleware solution is able to interface directly with databases via an ODBC connection string.
  • C. The middleware solution is capable of establishing a secure API gateway between cloud applications and on-premise resources.
  • D. An API gateway component is deployable behind a Demilitarized Zone (DMZ) or perimeter network.

Answer: C,D

Explanation:
Explanation
An API gateway is a component that acts as a single point of entry for all cloud applications to access on-premise resources and services. It can provide security, routing, transformation, and other features to facilitate integration. An API gateway component should be deployable behind a DMZ or perimeter network, which is a subnetwork that separates the internal network from the external network and provides an additional layer of security. The middleware solution should also be capable of establishing a secure API gateway between cloud applications and on-premise resources, which may involve using protocols such as HTTPS, SSL/TLS, or VPN. The OAuth security protocol is not a requirement for choosing a middleware solution, as it is a standard for authorizing access to resources on behalf of a user. The middleware solution's ability to interface directly with databases via an ODBC connection string is also not a requirement, as it is a specific feature that may or may not be needed depending on the integration scenario. Reference: Salesforce Integration Architecture Designer Resource Guide, page 14-15


NEW QUESTION # 38
The director of customer service at Northern Trail Outfitters (NTO) wants to capture and trend specific business events that occur in Salesforce in real time. The metrics will be accessed in an ad-hoc manner using an external analytics system. The events that are of interest are:
A customer has initiated a product exchange via a Case A customer service rep clicks on the "Authorize Exchange Product" menu item on the Case A customer has initiated a subscription cancellation via a Case A customer service rep clicks on the "Initiate Refund" menu item on the Case Which two solutions will meet these business requirements?
Choose 2 answers

  • A. Case Workflow Rule that sends an Outbound Message.
  • B. Case after insert Trigger that publishes a Platform Event.
  • C. Custom Apex controller that publishes a Platform Event.
  • D. Case after insert Trigger that executes a callout.

Answer: B,C


NEW QUESTION # 39
Northern Trail Outfitters needs to present shipping costs and estimated delivery times to their customers.
Shipping services used vary by region, and have similar but distinct service request parameters.
Which integration component capability should be used?

  • A. Outbound Messaging to request costs and delivery times from Shipper delivery services with automated error retry.
  • B. APEX REST Service to implement routing logic to the various shipping service.
  • C. Enterprise Service Bus to determine which shipping service to use, and transform requests to the necessary format.
  • D. Enterprise Service Bus user interface to collect shipper-specific form data.

Answer: C

Explanation:
Explanation
Using an Enterprise Service Bus (ESB) to determine which shipping service to use, and transform requests to the necessary format is a good solution because it can provide routing, transformation, mediation, and orchestration capabilities for integrating different services. An ESB can also abstract the complexity and heterogeneity of the services from the client application, which simplifies the integration. Using Outbound Messaging to request costs and delivery times from Shipper delivery services with automated error retry is not a good solution because Outbound Messaging is a Salesforce-specific feature that uses SOAP web services, which may not be compatible with all shipping services. Using APEX REST Service to implement routing logic to the various shipping service is also not a good solution because it can introduce performance and scalability issues, as well as increase the maintenance cost and complexity of the code. Using Enterprise Service Bus user interface to collect shipper-specific form data is not a valid option because an ESB does not have a user interface component. Reference: Salesforce Integration Architecture Designer Resource Guide, page 16-17


NEW QUESTION # 40
Sales representatives at Universal Containers (UC) use Salesforce Sales Cloud as their primary CRM. UC owns a legacy homegrown application that stores a copy of customer dataas well. Sales representatives may edit or update Contact records in Salesforce if there is a change.
Both Salesforce and the homegrown application should be kept synchronized for consistency. UC has these requirements:
1. When a Contact record in Salesforce is updated, the external homegrown application should be
2. The synchronization should be event driven.
3. The integration should be asynchronous.
Which option should an architect recommend to satisfy the requirements?

  • A. Write an Apex Trigger with the @future annotation.D Use an ETL tool to keep Salesforce and the homegrown application in sync on a regular candence.
  • B. Leverage Change Data Capture to track changes to the Contact object and write a CometD subscriber on the homegrown application.
  • C. Leverage Platform Events to publish a custom event message containing changes to the Contact object.

Answer: B

Explanation:
Explanation
Leverage Change Data Capture to track changes to the Contact object and write a CometD subscriber on the homegrown application. This solution meets the requirements of keeping Salesforce and the homegrown application synchronized for consistency, using event-driven and asynchronous integration. Change Data Capture is a feature that allows you to receive near real-time notifications of changes to Salesforce records, such as inserts, updates, deletes, and undeletes. You can use Change Data Capture to track changes to the Contact object, and publish them as events to an event bus. CometD is a protocol that allows you to subscribe to events from the event bus using a streaming API. You can write a CometD subscriber on the homegrown application, and use it to receive the events and update the customer data accordingly.
References: Certification - Integration Architect - Trailhead, [Change Data Capture Developer Guide],
[Streaming API Developer Guide]


NEW QUESTION # 41
What is the first thing an Integration Architect should validate if a callout from a LightningWeb Component to an external endpoint is failing?

  • A. The endpoint URL has been added to Content Security Policies.
  • B. The endpoint domain has been added to Cross-Origin Resource Sharing.
  • C. The endpoint URL has added been to an outbound firewall rule.
  • D. The endpoint URL has been added to Remote Site Settings.

Answer: B

Explanation:
Explanation
The first thing an integration architect should validate if a callout from a Lightning Web Component to an external endpoint is failing is the endpoint domain has been added to Cross-Origin Resource Sharing (CORS).
CORS is a mechanism that allows web browsers to make requests to servers on different origins, such as different domains, protocols, or ports. CORS requires the server to send back a special header that indicates whether the browser is allowed to access the resource or not. If the endpoint domain is not added to the CORS whitelist in Salesforce, the browser will block the callout and throw an error. Option B is not correct because Content Security Policies (CSP) are used to control what resources can be loaded on a Visualforce or Lightning page, such as scripts, stylesheets, images, etc. CSP does not affect the callout from a Lightning Web Component to an external endpoint. Option C is not correct because outbound firewall rules are used to restrict the network traffic from Salesforce to external systems. Firewall rules are configured at the network level, not at the Salesforce level. Option D is not correct because Remote Site Settings are used to specify the domains that are allowed for callouts from Apex code, not from Lightning Web Components. References:
Working with CORS and CSP to Call APIs from LWC
[Cross-Origin Resource Sharing (CORS)]


NEW QUESTION # 42
A new Salesforce program has the following high-level abstract requirement: Business processes executed on Salesforce require data updates between their Internal systems and Salesforce.
Which relevant detail should an integration architect seek to specifically solve for integration architecture needs of the program?

  • A. Core functional and non-functional requirements for User Experience design, Encryption needs, Community and license choices
  • B. Integration skills, SME availability, and Program Governance details
  • C. Timing aspects, real-time/near real-time (synchronous or asynchronous), batch and update frequency

Answer: C

Explanation:
Explanation
Timing aspects, real-time/near real-time (synchronous or asynchronous), batch and update frequency are relevant details that an integration architect should seek to specifically solve for integration architecture needs of the program. These details help to determine the appropriate integration pattern, technology, and solution for the business requirements. Core functional and non-functional requirements for User Experience design, Encryption needs, Community and license choices are important for the overall program design, but not specific to the integration architecture needs. Integration skills, SME availability, and Program Governance details are also important for the program execution, but not specific to the integration architecture needs.


NEW QUESTION # 43
Universal Containers is a global financial company that sells financial products and services including, bank accounts, loans, and insurance. UC uses Salesforce Service cloud to service their customer via calls, live chat. The support agents would open bank accounts on the spot for customers who are inquiring about UC bank accounts.
UC Core banking system is the system of record for bank accounts and all accounts opened in salesforce have to be synced in real-time to the core banking system. Support agents need to inform the customers with the newly created bank account ID which has to be generated from the core banking system.
Which integration pattern is recommended for this use case?

  • A. Use outbound message.
  • B. Use salesforce platform event.
  • C. Use request and reply.
  • D. Use streaming API to generate push topic.

Answer: C


NEW QUESTION # 44
An Integration Architect has built a solution using REST API, updating Account, Contact, and other related information. The data volumes have increased, resulting in higher API calls consumed, and some days the limits are exceeded. A decision was made to decrease the number of API calls using bulk updates. The customer prefers to continue using REST API to avoid architecture changes.
Which REST API composite resources should the Integration Architect use to allow up to 200 records in one API call?

  • A. SObject Tree
  • B. SObject Collections
  • C. Composite
  • D. Batch

Answer: A

Explanation:
https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_composite_sobject_tree.htm


NEW QUESTION # 45
Northern Trail Outfitters wants to improve the quality of call-outs from Salesforce to their REST APIs. For this purpose, they will require all API clients/consumers to adhere to RESTAPI Markup Language (RAML) specifications that include field-level definition of every API request and response payload. RAML specs serve as interface contracts that Apex REST API Clients can rely on.
Which two design specifications should the Integration Architect include in the integration architecture to ensure that Apex REST API Clients unit tests confirm adherence to the RAML specs?
Choose 2 answers

  • A. Call the Apex REST API Clients in a test context to get the mock response.
  • B. Implement HttpCalloutMock to return responses per RAML specification.
  • C. Require the Apex REST API Clients to implement the HttpCalloutMock.
  • D. Call the HttpCalloutMock implementation from the Apex REST API Clients.

Answer: A,B


NEW QUESTION # 46
An organization needs to integrate Salesforce with an external system and is considering authentication options. The organization already has implemented SAML, using a third-party Identity Provider for integrations between other systems.
Which use case can leverage the existing SAML integration to connect Salesforce with other internal systems?

  • A. Make Apex SOAP outbound integrations to external web services more secure.
  • B. A Make Apex REST outbound integrations to external web services more secure.
  • C. Make formula fields with HYPERLINK() to external web servers more secure.
  • D. Make an API inbound integration from an external Java client more secure.

Answer: C


NEW QUESTION # 47
A customer imports data from an external system into Salesforce using Bulk API. These jobs have batch sizes of 2000 and are run in parallel mode. The batc fails frequently with the error "Max CPU time exceeded". A smaller batch size will fix this error.
Which two options should be considered when using a smaller batch size?
Choose 2 answers

  • A. Smaller batch size may exceed the concurrent API request limits.
  • B. Smaller batch size may cause record-locking errors.
  • C. Smaller batch size may increase time required to execute bulk jobs.
  • D. Smaller batch size can trigger "Too many concurrent batches" error.

Answer: B,C


NEW QUESTION # 48
An organization needs to integrate Salesforce with an external system and is considering authentication options. The organization already has implemented SAML, using athird-party Identity Provider for integrations between other systems.
Which use case can leverage the existing SAML integration to connect Salesforce with other internal systems?

  • A. A Make Apex REST outbound integrations to external web services more secure.
  • B. Make Apex SOAP outbound integrations to external web services more secure.
  • C. Make formula fields with HYPERLINK() to external web servers more secure.
  • D. Make an API inbound integration from an external Java client more secure.

Answer: B

Explanation:
Explanation
The best use case for leveraging the existing SAML integration to connect Salesforce with other internal systems is to make Apex SOAP outbound integrations to external web services more secure. SAML can be used to authenticate the Salesforce org as the service provider and obtain a session ID from the external system as the identity provider. This session ID can then be used to make SOAP calls to the external web service without exposing any credentials in the Apex code. Option A is not correct because formula fields with HYPERLINK() do not support SAML authentication. Option C is not correct because Apex REST outbound integrations require OAuth or basic authentication, not SAML. Option D is not correct because API inbound integrations from an external Java client require OAuth or basic authentication, not SAML. References:
Named Credentials as Callout Endpoints
SAML SSO with Salesforce as the Service Provider


NEW QUESTION # 49
Which two approaches will require the least amount of development effort?
Choose 2 answers

  • A. Use the tooling API with Process Builder to insert leads in real time.
  • B. Call the Salesforce REST API to insert the lead into the target system.
  • C. Use the Composite REST API to aggregate multiple leads in a single call.
  • D. Configure named credentials in the source org.

Answer: C,D

Explanation:
The two approaches that will require the least amount of development effort are configuring named credentials in the source org and using the Composite REST API to aggregate multiple leads in a single call. Named credentials are a type of metadata that store authentication information for accessing external services, such as the target Salesforce org. By using named credentials, you can simplify the code for making callouts and avoid hardcoding credentials or tokens. The Composite REST API is a resource that allows you to execute multiple REST API requests in a single call. You can use the Composite REST API to create, update, or delete up to 25 records in one request. This can reduce the number of API calls and improve performance.
References: [Named Credentials], [Composite Resources]


NEW QUESTION # 50
Northern Trail Outfitters (NTO) uses different shipping services for each of the 34 countries it serves. Services are added and removed frequently to optimize shipping times and costs. Sales Representatives serve all NTO customers globally and need to select between valid service(s) for the customer's country and request shipping estimates from that service.
Which two solutions should an architect propose?
Choose 2 answers

  • A. Store shipping services in a picklist that is dependent on a country picklist.
  • B. Invoke middleware service to retrieve valid shipping methods.
  • C. Use Platform Events to construct and publish shipper-specific events.
  • D. Use middleware to abstract the call to the specific shipping services.

Answer: B,D


NEW QUESTION # 51
Which two requirements should the Salesforce Community Cloud support for self-registration and SSO?
Choose 2 answers

  • A. OpenId Connect Authentication Provider and just-in-time provisioning
  • B. SAML SSO and just-in-time provisioning
  • C. SAML SSO and Registration Handler
  • D. OpenId Connect Authentication Provider and Registration Handler

Answer: B,D


NEW QUESTION # 52
......


Salesforce Integration-Architect certification exam is a challenging exam that requires a lot of preparation and study. To prepare for the exam, you can take online courses, attend training sessions, and read study materials. You can also take practice tests to assess your knowledge and identify areas where you need improvement.

 

Free Integration-Architect Test Questions Real Practice Test Questions: https://www.lead1pass.com/Salesforce/Integration-Architect-practice-exam-dumps.html

View Integration-Architect Exam Question Dumps With Latest Demo: https://drive.google.com/open?id=1LUd171BgdArH_okukDhPML9FCIaIapM5