- A
Azure Logic Apps with the Office 365 Outlook approval action and the SharePoint connector
The Logic Apps approval action sends an email with Approve/Reject buttons and suspends the workflow run (using Azure's durable storage) until the response arrives or the timeout expires. The SharePoint connector's 'Update item' action then writes the outcome to the list. The entire workflow is configured without code using the Logic Apps Designer.
- B
Azure Durable Functions with the Human Interaction pattern using a timer and event listener
Why wrong: Durable Functions implement the Human Interaction pattern correctly but require writing orchestrator and activity functions in C#, JS, or Python. The requirement specifies no programming experience and no code — Logic Apps is the appropriate no-code alternative.
- C
Azure Data Factory with a Copy Activity pipeline triggered by an Azure Function
Why wrong: Azure Data Factory is a data integration and ETL service for moving and transforming data at scale. It is not designed for business process workflows, approval chains, or email-based human interaction.
- D
Azure Event Grid with a custom webhook handler that calls the SharePoint REST API
Why wrong: This approach requires writing and hosting a custom webhook application to handle the event, implement the approval UI, and call the SharePoint API — significant custom code for someone with no programming experience.
No-Code Approval Workflow with Azure Logic Apps
This AZ-204 practice question tests your understanding of connect to and consume azure services and third-party services. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. A key principle to apply: azure Logic Apps. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A business process requires sending an approval email, waiting up to 48 hours for a manager's response, and then updating a SharePoint list based on the decision. The process owner has no programming experience and wants to build this without writing code. Which Azure service is the most appropriate?
Quick Answer
Azure Logic Apps is the correct choice because its no-code designer lets you build an approval workflow entirely through a visual interface, using the Office 365 Outlook approval action to send the email and wait up to 48 hours, then the SharePoint connector to update the list based on the manager’s decision. This fully satisfies the requirement of no programming experience while handling the timed wait and conditional update natively. On the AZ-204 exam, this scenario tests your understanding of Azure’s integration services, often contrasting Logic Apps with Power Automate or Azure Functions—the key trap is that Power Automate is also no-code but is designed for individual productivity, not enterprise-scale workflows with connectors like SharePoint and Outlook that Logic Apps manages as a first-class Azure resource. Remember the memory tip: “Logic Apps for enterprise approval loops, Power Automate for personal loops.”
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Azure Logic Apps with the Office 365 Outlook approval action and the SharePoint connector
Azure Logic Apps is the correct choice because it provides a no-code/low-code designer that allows the process owner to visually build the approval workflow using the Office 365 Outlook 'Send approval email' action and the SharePoint connector to update the list. This fully meets the requirement of no programming experience while handling the 48-hour wait and conditional update.
Key principle: Azure Logic Apps
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
Azure Logic Apps with the Office 365 Outlook approval action and the SharePoint connector
Why this is correct
The Logic Apps approval action sends an email with Approve/Reject buttons and suspends the workflow run (using Azure's durable storage) until the response arrives or the timeout expires. The SharePoint connector's 'Update item' action then writes the outcome to the list. The entire workflow is configured without code using the Logic Apps Designer.
Related concept
Azure Logic Apps
- ✗
Azure Durable Functions with the Human Interaction pattern using a timer and event listener
Why it's wrong here
Durable Functions implement the Human Interaction pattern correctly but require writing orchestrator and activity functions in C#, JS, or Python. The requirement specifies no programming experience and no code — Logic Apps is the appropriate no-code alternative.
- ✗
Azure Data Factory with a Copy Activity pipeline triggered by an Azure Function
Why it's wrong here
Azure Data Factory is a data integration and ETL service for moving and transforming data at scale. It is not designed for business process workflows, approval chains, or email-based human interaction.
- ✗
Azure Event Grid with a custom webhook handler that calls the SharePoint REST API
Why it's wrong here
This approach requires writing and hosting a custom webhook application to handle the event, implement the approval UI, and call the SharePoint API — significant custom code for someone with no programming experience.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates may over-engineer the solution by choosing Durable Functions (Option B) because they recognize the Human Interaction pattern, but they overlook the explicit 'no programming experience' constraint that makes Logic Apps the only viable choice.
Detailed technical explanation
How to think about this question
Azure Logic Apps uses a managed connector architecture where each connector (e.g., Office 365 Outlook, SharePoint) abstracts the underlying REST API calls and OAuth authentication. The 'Send approval email' action internally creates a temporary callback URL that the manager clicks to approve/reject, and the Logic Apps runtime polls for the response for up to the configured timeout (max 1 year, but 48 hours is well within limits). The SharePoint connector then uses the SharePoint REST API (e.g., /_api/web/lists/getbytitle('...')/items) to update the list item based on the decision outcome.
KKey Concepts to Remember
- Azure Logic Apps
- Human approval workflow
- Office 365 Outlook approval action
- SharePoint connector
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Azure Logic Apps
Real-world example
How this comes up in practice
A cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Azure Logic Apps Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.
What to study next
Got this wrong? Here's your next step.
Review azure Logic Apps, then practise related AZ-204 questions on the same topic to reinforce the concept.
- →
Connect to and consume Azure services and third-party services — study guide chapter
Learn the concepts, then practise the questions
- →
Connect to and consume Azure services and third-party services practice questions
Targeted practice on this topic area only
- →
All AZ-204 questions
997 questions across all exam domains
- →
Microsoft Azure Developer Associate AZ-204 study guide
Full concept coverage aligned to exam objectives
- →
AZ-204 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related AZ-204 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Develop Azure compute solutions practice questions
Practise AZ-204 questions linked to Develop Azure compute solutions.
Develop for Azure storage practice questions
Practise AZ-204 questions linked to Develop for Azure storage.
Implement Azure security practice questions
Practise AZ-204 questions linked to Implement Azure security.
Connect to and consume Azure services and third-party services practice questions
Practise AZ-204 questions linked to Connect to and consume Azure services and third-party services.
Monitor, troubleshoot, and optimize Azure solutions practice questions
Practise AZ-204 questions linked to Monitor, troubleshoot, and optimize Azure solutions.
AZ-204 fundamentals practice questions
Practise AZ-204 questions linked to AZ-204 fundamentals.
AZ-204 scenario practice questions
Practise AZ-204 questions linked to AZ-204 scenario.
AZ-204 troubleshooting practice questions
Practise AZ-204 questions linked to AZ-204 troubleshooting.
Practice this exam
Start a free AZ-204 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this AZ-204 question test?
Connect to and consume Azure services and third-party services — This question tests Connect to and consume Azure services and third-party services — Azure Logic Apps.
What is the correct answer to this question?
The correct answer is: Azure Logic Apps with the Office 365 Outlook approval action and the SharePoint connector — Azure Logic Apps is the correct choice because it provides a no-code/low-code designer that allows the process owner to visually build the approval workflow using the Office 365 Outlook 'Send approval email' action and the SharePoint connector to update the list. This fully meets the requirement of no programming experience while handling the 48-hour wait and conditional update.
What should I do if I get this AZ-204 question wrong?
Review azure Logic Apps, then practise related AZ-204 questions on the same topic to reinforce the concept.
What is the key concept behind this question?
Azure Logic Apps
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Keep practising
More AZ-204 practice questions
- An app must store relational state and perform transactions across multiple tables with T-SQL support. Which Azure data…
- You are monitoring an Azure App Service using Application Insights. You notice that the server response time is high for…
- Which TWO services can be used to implement a publish-subscribe messaging pattern in Azure?
- You need to monitor the CPU utilization of an Azure VM in real-time and set up an alert when it exceeds 90%. Which Azure…
- You are monitoring an Azure web application with Application Insights. You notice a sudden increase in the number of fai…
- You are monitoring an Azure web app using Application Insights. You need to create a query that returns the average dura…
Last reviewed: Jun 11, 2026
This AZ-204 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the AZ-204 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.