Free Microsoft Power Platform PL-400 Actual Exam Questions - Question 4 Discussion

Question No. 4
You are designing a one-way integration from Microsoft Dataverse to another system.
You must use an Azure Function to update the other system. The integration must send only newly
created records to the other system. The solution must support scenarios where a component of the
integration is unavailable for more than a few seconds to avoid data loss.
You need to design the integration solution.
Solution: Register a service endpoint in the Dataverse instance that connects to an Azure Service Bus
queue.
Register a step at the endpoint which runs asynchronously on the record's Create message and in the
post-operation stage.
Configure the Azure Function to process records as they are added to the queue.
Does the solution meet the goal?
Select one option, then reveal solution.
US
YU
Yasir U.
2026-02-17

Option A seems right since async steps queue up create events, so no data loss if Azure Function is down. Plus, only new records trigger the create message, matching the requirement.

0
YU
Yasir U.
2026-01-26

A. Using an async step with a service bus queue means messages aren't lost if the function is down temporarily, so this should handle downtime well and send only new records.

0
YU
Yasir U.
2026-01-15

A - async ensures no data loss if system is down.

0