Valid PDII Dumps shared by EduDump.com for Helping Passing PDII Exam! EduDump.com now offer the newest PDII exam dumps, the EduDump.com PDII exam questions have been updated and answers have been corrected get the newest EduDump.com PDII dumps with Test Engine here:
Universal Containers needs to integrate with their own, existing, internal custom web application. The web application accepts JSON payloads, resizes product images, and sends the resized images back to Salesforce. What should the developer use to implement this integration?
Correct Answer: A
In a scenario where an integration requires making a callout to an external web application, Apex is often used to perform callouts. The callout must be asynchronous when being made from a trigger because a callout cannot be made from a synchronous operation like a trigger due to the possibility of long-running transactions. Option A (An Apex trigger that calls an @future method that allows callouts) is correct because it enables the trigger to perform an asynchronous callout to the external web application, which is necessary for sending JSON payloads and receiving the resized images. Options B, C, and D do not fit the requirement as well as option A because platform events and flows are typically not used for making direct callouts to external systems in the context described. References: Apex Developer Guide: Apex Web Services and Callouts
Recent Comments (The most recent comments are at the top.)
anything101 - Dec 09, 2025
Platform events can't make callouts A flow can't directly call an @future method Outbound messages are SOAP, so no JSON
Recent Comments (The most recent comments are at the top.)
Platform events can't make callouts
A flow can't directly call an @future method
Outbound messages are SOAP, so no JSON
Answer is A