nerdexam
Microsoft

PL-600 · Question #197

A company has an expense approval process that allows expenses to be submitted in multiple currencies. An accountant converts the expense amount to USD as part of the approval process. You need to…

The correct answer is C. Create a cloud flow. Use the Microsoft Graph API to get the currency conversion rate. Automate currency conversion using a RESTful API as part of an expense approval process.

Submitted by rohit_dlh· Apr 18, 2026Architect a solution

Question

A company has an expense approval process that allows expenses to be submitted in multiple currencies. An accountant converts the expense amount to USD as part of the approval process. You need to automate the conversion by using the RESTful API. What should you do?

Options

  • ACreate a desktop flow. Use an Invoke web service action to get the currency conversion rate.
  • BCreate a desktop flow. Use an Azure action to get the currency conversion rate.
  • CCreate a cloud flow. Use the Microsoft Graph API to get the currency conversion rate.
  • DCreate a desktop flow. Use a browser automation action to get the currency conversion rate.

How the community answered

(49 responses)
  • A
    4% (2)
  • B
    2% (1)
  • C
    84% (41)
  • D
    10% (5)

Why each option

Automate currency conversion using a RESTful API as part of an expense approval process.

ACreate a desktop flow. Use an Invoke web service action to get the currency conversion rate.

Desktop flows are for automating tasks on a local machine's UI or applications, and while they can invoke web services, a cloud flow is more suitable and scalable for server-side API calls.

BCreate a desktop flow. Use an Azure action to get the currency conversion rate.

"Azure action" is too vague and doesn't specify a direct way to get currency conversion rates via a RESTful API within a desktop flow; Azure services would typically be consumed by cloud flows.

CCreate a cloud flow. Use the Microsoft Graph API to get the currency conversion rate.Correct

To automate currency conversion using a RESTful API, a cloud flow is the appropriate choice as it can directly call web services and handle API integrations without requiring a desktop UI. A cloud flow can leverage the HTTP connector to interact with any RESTful API, making it a scalable and efficient solution for server-side data conversion.

DCreate a desktop flow. Use a browser automation action to get the currency conversion rate.

Browser automation is for interacting with web pages, which is inefficient and brittle for getting structured data like currency rates from a RESTful API compared to direct API calls.

Concept tested: Automating API calls for data conversion using cloud flows

Source: https://learn.microsoft.com/en-us/power-automate/use-http-action

Topics

#Power Automate#Cloud flows#REST API Integration#Solution Design

Community Discussion

No community discussion yet for this question.

Full PL-600 Practice