HOTSPOT -
You need to design functionality to process background check results.
What should you implement? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:

HOTSPOT -
You need to design functionality to process background check results.
What should you implement? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:
Box 1: Pull -
After submitting candidate information, users must periodically check the website to see if a response has been posted.
Box 2:
The background check process goes through a number of stages before reaching the final result.
Need just to update the state changes, not to insert.
Note:
Reference:
https://docs.microsoft.com/en-us/power-apps/developer/data-platform/use-upsert-insert-update-record
1st need to be event based as it says. The solution must connect to the service and update the background check stage for candidates at least once per hour for incomplete background checks.
pull/upsert - as status can not only be updated, but also inserted in case new status value is retrieved (subjct to change)
Me thinks this answer is correct "The solution must connect to the service and update the background check stage for candidates at least once per hour for incomplete background checks." Therefore status is not changed based on some events. Status is changed from periodic pull request that will reflect changes within an hour of the status being updated by the third party. I also cahttps://www.examtopics.com/exams/microsoft/pl-400/view/37/#n't ever see a scenario where you would need to insert (i.e. Create) a new record for the background status... Update should be plenty fine
"The API also returns one of ten possible values identifying the current stage of the verification process." "The content and number of stage values is subject to change." "The HR department must be able to update the stage values." I think that implies that if a new stage is obtained from the API then it needs to be added to Dataverse. So, I would go with: Pull Upsert