Correct Answer: D
Power Apps provides the Client API model for model-driven apps for users to implement in their business logic. The Client API model includes objects and methods that developers can access using Javascript code.
There are four root objects of the Client API model: executionContext — this is an execution object of the model-driven app. It gives access to the context of the forms and grids.
formContext — provides access to the form object using the executionContext.
gridContext — provides access to the grid (subgrid) on a form.
Xrm — provides access to the global object for operations that do not directly impact UI and data in forms, grids, controls.
The Xrm.WebAPI object uses Web API for the Dataverse data access. It has two properties: online and offline.A list of methods includes the record operations, a retrieval of the multiple records, and execution of the single or multiple actions, functions, or CRUD operations.
To retrieve multiple records from the Dataverse contact table, you use the retrieveMultipleRecords method, like in the following statement:
All other options are incorrect.
For more information about model-driven app’s Client API scripts using WebAPI, please visit the below URLs: