Integration-Architectトレーニング最新認定問題をゲットSalesforce Integration Architecture Designer合格目指せ2023年12月17日 [Q17-Q42]

Share

Integration-Architectトレーニング最新認定問題をゲットSalesforce Integration Architecture Designer合格目指せ2023年12月17日

認定トレーニングIntegration-Architect試験問題集テストエンジン


Salesforce Integration-Architect認定は、日々Salesforceと他のシステムを扱うプロフェッショナルにとって重要です。特に、統合に特化したITプロフェッショナル、アーキテクト、開発者にとって役立ちます。この認定は、プロのSalesforce統合の専門知識を証明し、競争の激しい求人市場で差別化し、新しいキャリア機会を開拓するのに役立ちます。


Salesforce Integration-Architect認定試験は、統合デザインの原則、パターン、およびベストプラクティスに関する候補者の知識を試験するように設計されています。試験はまた、REST、SOAP、およびBulk APIを含むさまざまな統合技術を使用して統合を設計および実装する能力を評価します。この認定は、データ統合、プロセス統合、およびアイデンティティ管理を含む広範な統合トピックをカバーしています。


Salesforce Integration-Architect認定試験は、Salesforceプラットフォームを使用して複雑な統合ソリューションの設計と実装において、統合アーキテクトの専門知識とスキルを検証するグローバルに認められた認定プログラムです。この認定試験は、統合パターン、データモデリング、セキュリティ、パフォーマンスのベストプラクティスを深く理解している経験豊富な統合アーキテクト向けに設計されています。

 

質問 # 17
Northern Trail Outfitters submits orders to the manufacturing system web-service. Recently, the system has experienced outages that keeping service unavailable for several days.
What solution should an architect recommend to handle errors during these types of service outages?

  • A. A Use Platform Event replayldand custom scheduled Apex process to retrieve missed events.
  • B. Use @future jobld and custom scheduled apex process to retry failed service calls.
  • C. Use Outbound Messaging to automatically retry failed service calls.
  • D. Use middleware queuing and buffering to insulate Salesforce from system outages.

正解:D

解説:
Explanation
Using middleware queuing and buffering is a solution that can handle errors during service outages by storing the messages in a queue until the service is available again. This way, Salesforce does not lose any data or encounter any failures when the service is down. Using @future jobld and custom scheduled apex process to retry failed service calls is not a good solution because it can consume a lot of governor limits and create a lot of duplicate records. Using Outbound Messaging to automatically retry failed service calls is also not a good solution because it has a limited number of retries and a fixed retry interval, which may not be sufficient for long service outages. Using Platform Event replayld and custom scheduled Apex process to retrieve missed events is not applicable for this scenario because Platform Events are used for event-driven integration, not for web-service integration. Reference: Salesforce Integration Architecture Designer Resource Guide, page 29-30


質問 # 18
Northern Trail Outfitters (NTO) use Salesforce to track leads, opportunities, and to capture order details.
However, Salesforce isn't the system that holds or processes orders. After the order details are captured in Salesforce, an order must be created in the remote system, which manages the orders life cylce. The Integration Architect for the project is recommending a remote system that will subscribe to the platform event defined in Salesforce.
Which integration pattern should be used for this business use case?

  • A. Fire and Forget
  • B. Remote Call In
  • C. Batch Data Synchronization
  • D. Request and Reply

正解:A

解説:
Explanation
The Fire and Forget pattern is suitable for this business use case because it allows sending a message from Salesforce to the remote system without waiting for a response or acknowledgement. This reduces the latency and complexity of the integration and enables asynchronous processing of the orders in the remote system. The platform event defined in Salesforce can be used to publish the order details to the remote system, which can subscribe to the event and create the order accordingly1


質問 # 19
An Integration Developer is developing an HR synchronization app for a client. The app synchronizes Salesforce record data changes with an HR system that's external to Salesforce.
What should the integration architect recommend to ensure notifications are stored for up to three days if data replication fails?

  • A. Generic Events
  • B. Change Data Capture
  • C. Callouts
  • D. Platform Events

正解:B

解説:
https://trailhead.salesforce.com/en/content/learn/modules/change-data-capture/understand-change-data-capture


質問 # 20
A company in a heavily regulated industry requires data in legacy systems to be displayed in Salesforce user interfaces (UIs). They are proficient in their cloud-based ETL (extract, transform, load) tools. They expose APIs built on their on-premise middleware to cloud and on-premise applications.
Which two findings about their current state will allow copies of legacy data in Salesforce?
Choose 2 answers

  • A. On-premise middleware provides APIs to legacy systems data.
  • B. Cloud-based ETL can access Salesforce and supports queues.
  • C. Only on-premise systems are allowed access to legacy systems.
  • D. Legacy systems can use queues for on-premise integration.

正解:A、B


質問 # 21
Northern Trail Outfitters has had an increase in requests from other business units to integrate opportunity information with other systems from Salesforce. The developers have started writing asynchronous @future callouts directly into the target systems. The CIO is concerned about the viability of this approach scaling for future growth and has requested a solution recommendation.
What should be done to mitigate the concerns that the CIO has?

  • A. Develop a comprehensive catalog of Apex classes to eliminate the need for redundant code and use custom metadata to hold the endpoint information for each integration.
  • B. Implement an ETL tool and perform nightly batch data loads to reduce network traffic using last modified dates on the opportunity object to extract the right records.
  • C. Implement an Enterprise Service Bus for service orchestration, mediation, routing and decouple dependencies across systems.
  • D. Refactor the existing ©future methods to use Enhanced External Services, import Open API 2.0 schemas and update flows to use services instead of Apex.

正解:D


質問 # 22
A customer of Salesforce has used Platform Events to integrate their Salesforce instance with an external third-party Artificial Intelligence (AI) system. The AI system provides a prediction score for each lead that is received by Salesforce. Once the prediction score is received, the lead information is saved to Platform events for other processes. The trigger on the Platform Events is failing once this was rolled out to Production.
What type of monitoring should the Integration Consultant have considered to monitor this integration?

  • A. Set up debug logs for Platform Event triggers to monitor performance.
  • B. Monitor Platform Events created per hour limits across the Salesforce instance.
  • C. Monitor the volume of leads that are created in Salesforce.
  • D. Validate the Platform Event definition matches leads definition.

正解:B

解説:
Explanation
The integration consultant should have considered monitoring the Platform Events created per hour limits across the Salesforce instance. This is because Platform Events have a limit on the number of events that can be published or delivered per hour, depending on the edition and license type. If this limit is exceeded, the trigger on the Platform Events may fail or be delayed. Option B is not correct because debug logs for Platform Event triggers are not useful for monitoring performance. Debug logs are used for troubleshooting issues or errors in the trigger logic, not for measuring the throughput or latency of the events. Option C is not correct because validating the Platform Event definition matches leads definition is not a monitoring task, but a design task. The integration consultant should have ensured that the Platform Event definition matches leads definition before deploying the integration to production. Option D is not correct because monitoring the volume of leads that are created in Salesforce is not relevant for this integration. The volume of leads does not affect the trigger on the Platform Events, as long as the Platform Events created per hour limits are not exceeded.


質問 # 23
Universal containers are planning to implement Salesforce as their CRM system. Currently they have the following systems
1. Leads are managed in a Marketing System.
2. Sales people use Microsoft Outlook to enter contacts, emails and manage activities.
3. Inventory, Billing and Payments are managed in their ERP system. 4. The proposed CRM system is expected to provide Sales and Support people the ability to have a single view of their customers and manage their contacts, emails and activities in Salesforce CRM.
What should an Integration Consultant consider to support the proposed CRM system strategy?

  • A. Plan for migration of customer and sales data across systems on a regular basis to keep them in sync.
  • B. Propose a middleware system that can support interface between systems with Salesforce.
  • C. Evaluate current and future data and system usage and then identify potential integration requirements to Salesforce.
  • D. Explore Out of box Salesforce connectors for integration with ERP, Marketing and Microsoft Outlook systems.

正解:C

解説:
Explanation
The integration consultant should evaluate current and future data and system usage and then identify potential integration requirements to Salesforce. This approach can help to understand the business needs, data flows, data quality, data volume, data frequency, and data security of the proposed CRM system. Based on this analysis, the integration consultant can design and implement the best integration solution for each system, such as Marketing, ERP, or Outlook.
References: [Salesforce Integration Architecture Designer Resource Guide]


質問 # 24
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 user interface to collect shipper-specific form data.
  • D. Enterprise Service Bus to determine which shipping service to use, and transform requests to the necessary format.

正解:D

解説:
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


質問 # 25
Service Agents at Northern Trail Outfitters uses Salesforce to manage cases and B2C Commerce for ordering.
Which integration solution should an architect recommend in order for the service agents to see order history from a B2C Commerce system?

  • A. Mulesoft Anypoint Platform
  • B. Salesforce B2C Commerce to Service Cloud Connector
  • C. REST API offered by Salesforce Platform
  • D. A REST API offered by Commerce Platform

正解:B

解説:
https://help.salesforce.com/articleView?id=icx_b2c_conversationalcommerce_connector.htm&type=5


質問 # 26
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. Use middleware to abstract the call to the specific shipping services.
  • B. Invoke middleware service to retrieve valid shipping methods.
  • C. Store shipping services in a picklist that is dependent on a country picklist.
  • D. Use Platform Events to construct and publish shipper-specific events.

正解:A、B


質問 # 27
A customer of Salesforce has used Platform Events to integrate their Salesforce instance with an external third-party Artificial Intelligence (AI) system. The AI system provides a prediction score for each lead that is received by Salesforce. Once the prediction score is received, the lead information is saved to Platform events for other processes. The trigger on the Platform Events is failing once this was rolled out to Production.
What type of monitoring should the Integration Consultant have considered to monitor this integration?

  • A. Set up debug logs for Platform Event triggers to monitor performance.
  • B. Monitor Platform Events created per hour limits across the Salesforce instance.
  • C. Monitor the volume of leads that are created in Salesforce.
  • D. Validate the Platform Event definition matches leads definition.

正解:B


質問 # 28
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.

正解:B


質問 # 29
Northern Trail Outfitters requires an integration to be set up between one of their Salesforce orgs and an external data source us Salesforce Connect. The external data source supports Open Data Protocol.
Which three configurations should an Integration Architect recommend be implemented in order to secure requests coming from Salesforce?
Choose 3 answers

  • A. Configure CSRF Protection on External Data Source.
  • B. Configure Identity Type for OData connection.
  • C. Configure Special Compatibility for OData connection,
  • D. Configure CSRF Protection for OData connection.
  • E. Configure a Certificate for OData connection.

正解:B、D、E

解説:
https://help.salesforce.com/articleView?id=apex_add_external_data_source.htm&type=5


質問 # 30
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 ApexREST API Clients unit tests confirm adherence to the RAML specs?
Choose 2 answers

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

正解:A、D

解説:
Explanation
The HttpCalloutMock interface allows testing HTTP callouts by returning a predefined response in a test context.
By implementing HttpCalloutMock to return responses per RAML specification, the Apex REST API Clients unit tests can confirm that the API requests and responses match the expected format and values.
Calling the Apex REST API Clients in a test context to get the mock response is also necessary to verify the adherence to the RAML specs. Calling the HttpCalloutMock implementation from the Apex REST API Clients or requiring the Apex REST API Clients to implement the HttpCalloutMock are not valid options because the HttpCalloutMock interface is implemented by a separate class that is passed as a parameter to the Test.setMock method2 References: 1: Idempotent REST APIs 2: Testing HTTP Callouts by Implementing the HttpCalloutMock Interface


質問 # 31
The sales Operations team at Northern Trail Outfitters imports new leads each day. An integrated legacy territory management system assigns territories to leads before Sales team members can work on them. The current integration often experiences latency issues.
Which two recommendations should an Architect make to improve the integration performance?
Choose 2 answers

  • A. Reduce batch size of synchronous BULK API.
  • B. Legacy system should submit in parallel mode.
  • C. Legacy system should submit in serial mode.
  • D. Reduce batch size of asynchronous BULK API.

正解:B、D

解説:
Explanation
Reducing the batch size of asynchronous BULK API and submitting the legacy system in parallel mode are two recommendations that can improve the integration performance. The BULK API is designed to handle large-scale data loads, but it can also cause latency issues if the batch size is too large or the network bandwidth is insufficient. Reducing the batch size can help to avoid timeouts and improve throughput.
Submitting the legacy system in parallel mode can also speed up the integration process by allowing multiple batches to be processed concurrently, as long as there are no dependencies or conflicts between them.
Reference: Salesforce Integration Architecture Designer Resource Guide, page 21


質問 # 32
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. 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.
  • D. 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.
  • E. 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.

正解:B、C、D

解説:
https://developer.salesforce.com/docs/atlas.en-us.platform_events.meta/platform_events/platform_event_limits.htm
https://help.salesforce.com/articleView?id=workflow_om_considerations.htm&type=5


質問 # 33
Northern Trail Outfitters needs to make synchronous callouts "available to promise"services to query product availability and reserve inventory during customer checkout process.
Which two considerations should an integration architect make when building a scalable integration solution?
Choose 2 answers

  • A. The typical and worst-case historical response times.
  • B. The maximum query cursors open per user on the service.
  • C. How many concurrent service calls are being placed.
  • D. The number batch jobs that can run concurrently.

正解:A、C

解説:
Explanation
The typical and worst-case historical response times, and how many concurrent service calls are being placed are two considerations that an integration architect should make when building a scalable integration solution for synchronous callouts to "available to promise" services. These two factors can affect the performance, reliability, and availability of the integration solution, as well as the user experience of the customer checkout process. The integration architect should design the solution to handle high volumes of service calls, optimize the response times, handle errors and timeouts, and avoid hitting governor limits or service quotas.
References: Certification - Integration Architect - Trailhead, [Callout Limits and Limitations], [Integration Patterns and Practices]


質問 # 34
Northern Trail Outfitters is planning to perform nightly batch loads into Salesforce from an externalsystem with a custom Java application using the and the CIO is curious about monitoring recommendations for the jobs from the Technical Architect Which two recommendations will help meet the requirements?
Choose 2 answers

  • A. Visually monitor in the Salesforce UI using the "Bulk Data Load Jobs in Salesforce in the setup menu.
  • B. Use the getBatchInfo method in the Java application to monitor the status of the jobs from the Java application.
  • C. Write the error response fromthe Bulk API status to a custom error logging object in Salesforce using an Apex trigger and create reports on the object.
  • D. Set the Salesforce debug logs level to "finest" and add the user Id running the job to monitor in the
    "Debug Logs" in the setup menu.

正解:A、B

解説:
Explanation
Visually monitor in the Salesforce UI using the "Bulk Data Load Jobs" in Salesforce in the setup menu, and use the getBatchInfo method in the Java application to monitor the status of the jobs from the Java application.
These two methods can help the Technical Architect to monitor the nightly batch loads into Salesforce from an external system with a custom Java application using the Bulk API. The "Bulk Data Load Jobs" page in Salesforce shows the status, progress, and results of each batch load job. The getBatchInfo method in the Java application returns a BatchInfo object that contains information about a batch, such as its ID, state, number of records processed, and number of errors. References: Certification - Integration Architect - Trailhead, [Bulk API Developer Guide]


質問 # 35
Northern Trail Outfitters (NTO) uses Salesforce to track leads, opportunities andorder 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. Process Orchestration
  • C. Data Synchronization
  • D. Batch Processing

正解:A

解説:
Explanation
Data Visualization is the type of integration that allows users to view real-time data from an external system without storing it in Salesforce. This can be achieved by using Lightning Web Components, Visualforce pages, or Canvas apps that display data from the external system using APIs or web services. Data Synchronization, Process Orchestration, and Batch Processing are types of integration that involve moving data between systems, which is not required by the business requirement. Reference: Salesforce Integration Architecture Designer Resource Guide, page 9


質問 # 36
A large enterprise customer with the following system landscape is planning to implement Salesforce Sales Cloud.
The following business processes need to be supported in Salesforce:
1. Sales Consultants should be able to have access to current inventory.
2. Enterprise Resource Planning System(ERP) is the system of record for pricing information.
3. Quotes should be generated in Salesforce with pricing from ERP.
4. Sales Management uses a Enterprise Business Intelligence (BI) toolto view Sales dashboards.
5. Master Data Management (MDM) is the system of record for customers and prospects.
6. Invoices should be accessible in Salesforce.
Which systems in the landscape should the Integration Consultant consider to be integrated with Salesforce to support the business requirements?

  • A. ERP, MDM, Data Warehouse, Invoices system
  • B. ERP, MDM, BI tool and Data Warehouse
  • C. ERP, Inventory, Pricing Engine, Invoices system
  • D. ERP, Invoices system, Data Warehouse and BI Tool

正解:C


質問 # 37
An enterprise architect has requested the Salesforce Integration architect to review the following (see diagram & description) and provide recommendations after carefully considering all constraints of the enterprise systems and Salesforce platform limits.

* About 3,000 phone sales agents use a Salesforce Lightning UI concurrently to check eligibility of a customer for a qualifying offer.
* There are multiple eligibility systems that provides this service and are hosted externally. However, their current response times could take up to 90 seconds to process and return (there are discussions to reduce the response times in future, but no commitments are made).
* These eligibility systems can be accessed through APIs orchestrated via ESB (MuleSoft).
* All requests from Salesforce will have to traverse through customer's API Gateway layer and the API Gateway imposes a constraint of timing out requests after 9 seconds.
Which three recommendations should be made?
Choose 3 answers

  • A. Implement a 'Check Update' button that passes a requestID received from ESB (user action needed).
  • B. When responses are received by Mule, create a Platform Event in Salesforce via Remote-Call-In and use the empAPI in the lightning UI to serve 3,000 concurrent users.
  • C. Recommend synchronous Apex call-outs from Lightning UI to External Systems via Mule and implement polling on API gateway timeout.
  • D. ESB (Mule) with cache/state management to return a requestID (or) response if available from external system.
  • E. Use Continuation callouts to make the eligibility check request from Salesforce from Lightning UI at page load.

正解:A、D、E


質問 # 38
An Enterprise Customer is planning to implement Salesforce to support case management. Below, is their current system landscape diagram.
Considering Salesforce capabilities, what should the Integration Architect evaluate when integrating Salesforce with the current system landscape?

  • A. Integrating Salesforce with Order Management System, Email Management System and Case Management System.
  • B. Integrating Salesforce with Data Warehouse, Order Management and Email Management System.
  • C. Integrating Salesforce with Order Management System, Data Warehouse and Case Management System.
  • D. Integrating Salesforce with Email Management System, Order Management System and Case Management System.

正解:B

解説:
Explanation
Integrating Salesforce with Data Warehouse, Order Management and Email Management System is the best option considering Salesforce capabilities. Salesforce can be used as the primary case management system, replacing the existing one. Salesforce can also integrate with the Data Warehouse to provide analytics and reporting on case data. Salesforce can integrate with the Order Management System to access order information related to cases. Salesforce can integrate with the Email Management System to send and receive emails from customers and agents. Reference: Salesforce Integration Architecture Designer Resource Guide, page 16


質問 # 39
A large enterprise customer has decided to implement Salesforce as their CRM. The current system landscape includes the following:
1. An Enterprise Resource Planning (ERP) solution that is responsible for Customer Invoicing and Order fulfillment.
2. A Marketing solution they use for email campaigns.
The enterprise customer needs their sales and service associates to use Salesforce to view and log their interactions with customers and prospects in Salesforce.
Which system should be the System of record for their customers and prospects?

  • A. Marketing with all customer data from Salesforce and ERP.
  • B. New Custom Database for Customers and Prospects.
  • C. ERP with all prospect data from Marketing and Salesforce.
  • D. Salesforce with relevant Marketing and ERP information.

正解:D

解説:
https://www.workfront.com/blog/systems-of-record


質問 # 40
Universal Containers (UC) is a leading provider of managementtraining globally, UC requested students course registration data generated from the Salesforce student community to be synced with the learning management system (LMS). Any update to the course registration data needs to be reflected in the LMS.
Which integration mechanism should be used to meet the requirement?

  • A. Change Data Capture (CDC)
  • B. Platform Event
  • C. Outbound Message
  • D. Streaming API

正解:A

解説:
Explanation
Change Data Capture (CDC) is the best option to meet the requirement. CDC is a type of streaming event that notifies subscribers of changes to Salesforce records, such as creation, update, delete, and undelete operations.
By subscribing to CDC events for the course registration data, the LMS can receive real-time updates and sync with Salesforce. Streaming API is another type of streaming event that notifies subscribers of changes to Salesforce records that match a SOQL query. However, Streaming API has some limitations, such as not supporting all SOQL features and not capturing delete and undelete operations. Platform Event is a type of streaming event that delivers custom notifications within the Salesforce platform or from external sources.
Platform Event is not suitable for this requirement because it is not tied to Salesforce records and requires custom logic to publish and subscribe. Outbound Message is a workflow action that sends SOAP messages with field values to designated endpoints. Outbound Message is not suitable for this requirement because it does not support complex data types, such as sObjects or collections.


質問 # 41
Universal Containers (UC) is a leading provider of management training globally, UC embarked on a Salesforce transformation journey to allow students to register for courses in the Salesforce community. UC has a learning system that masters all courses and student registration.
UC requested a near real-time feed of student registration from Salesforce to the learning system. The integration architect recommends using Salesforce event.
Which API should be used for the Salesforce platform event solution?

  • A. O REST AP
  • B. Streaming API
  • C. Tooling API
  • D. SOAP API

正解:B


質問 # 42
......

合格確定、ガイドで準備Integration-Architect試験:https://jp.fast2test.com/Integration-Architect-premium-file.html

Salesforce Integration Architecture Designer Integration-Architect無料最新のリアル試験問題と回答:https://drive.google.com/open?id=1tnrShkIkl63o6AIVZjnkNy1Gp1BH42zC


弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

我々の働いている時間: ( GMT 0:00-15:00 )
月曜日から土曜日まで

サポート: 現在連絡 

English Deutsch 繁体中文 한국어