Microsoft
PL-400 · Question #236
You are developing a Power Apps app to manage records in the Account table in Microsoft Dataverse. You must configure a Web API request to retrieve changes from the table. You need to configure the…
The correct answer is B. odata.deltaLink. The odata.deltaLink header is used to retrieve changes from a table in Dataverse. It is a more efficient way to retrieve changes than using the odata.nextLink header. To configure the odata.deltaLink header, you need to include the following in the request header…
Submitted by haruto_sh· Apr 18, 2026
Question
You are developing a Power Apps app to manage records in the Account table in Microsoft Dataverse. You must configure a Web API request to retrieve changes from the table. You need to configure the preference header for the API request. What should you include in the request header?
Options
- Aodata.context
- Bodata.deltaLink
- Codata.track-changes
- Dodata.nextLink
How the community answered
(36 responses)- A3% (1)
- B78% (28)
- C6% (2)
- D14% (5)
Explanation
The odata.deltaLink header is used to retrieve changes from a table in Dataverse. It is a more efficient way to retrieve changes than using the odata.nextLink header. To configure the odata.deltaLink header, you need to include the following in the request header: odata.deltaLink=https://{server}/{organization}/api/data/v9.0/Accounts?$filter=Id eq guid'{AccountId}'
Community Discussion
No community discussion yet for this question.