Microsoft Power Platform Developer — Question 57

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear on the review screen.

You have two tables, account and contact, with a parent-child relationship. Records in the account table can be created in the UI or from an external system integrated with Dataverse by using an Azure Function.

When a user creates a record in the account table, a default record in the contact table must be created automatically.

You need to implement a process to create the contact records.

Solution: Create a custom API bound to the account table that uses a plug-in. Use the Organization service to create the contact record.

Does the solution meet the goal?

Answer options

Correct answer: B

Explanation

The solution does not meet the goal because creating a custom API bound to the account table with a plug-in does not automatically trigger when an account is created. Instead, a more appropriate approach would involve using workflows or business rules that directly respond to the creation of an account record to initiate the creation of a corresponding contact record.