100% Free Forever
AI-Powered Learning
Industry Expert Content
Certificates & Badges
Learn At Your Own Pace
Programming

Building an Approval Workflow

A step-by-step walkthrough of building a multi-stage approval flow in Power Automate, from the trigger through the Approvals connector to the final outcome handling.

PracticeBeginner8 min readJul 10, 2026
Analogies

Anatomy of an Approval Flow

A standard approval workflow begins with a trigger such as 'When an item is created' on a SharePoint list or 'For a selected item' for manual submission, then calls the 'Start and wait for an approval' action from the Approvals connector, specifying the approval type (single approver, everyone must approve, or first to respond), the approver's email, and a title and details string pulled from the triggering item's dynamic content. The action pauses the flow and creates a task both in the Power Automate mobile/web Approvals center and, if configured, a Teams adaptive card, until the approver responds or the flow's timeout is reached.

🏏

Cricket analogy: A DRS review pauses live play entirely until the third umpire renders a decision, the same way 'Start and wait for an approval' halts the flow's execution until the approver responds.

Handling Multi-Stage and Conditional Approvals

For a multi-stage approval — say, a manager approval followed by a finance approval only if the request exceeds a dollar threshold — chain a second 'Start and wait for an approval' action inside a Condition branch that checks the outcome of the first, using outputs('Start_and_wait_for_an_approval')?['body/outcome'] to branch on Approve versus Reject, and reference the manager's email dynamically via the Office 365 'Get manager (V2)' action rather than hardcoding it, so the flow adapts automatically as reporting lines change. When more than one approver must weigh in in parallel rather than in sequence, use the 'Everyone must approve' approval type on a single action instead of chaining separate approval actions, since chaining would force approvers to respond sequentially rather than concurrently.

🏏

Cricket analogy: A bowling change goes through the captain first and only escalates to the coach's input if the situation is critical, a sequential escalation mirroring a manager-then-finance approval chain gated by a condition.

text
Trigger: When an item is created (SharePoint - Expense Requests)
  -> Get manager (V2) [User (UPN): triggerOutputs()?['body/Author/Email']]
  -> Start and wait for an approval
       Approval type: Approve/Reject - First to respond
       Title: Expense approval for @{triggerBody()?['Title']}
       Assigned to: outputs('Get_manager_(V2)')?['body/mail']
  -> Condition: outputs('Start_and_wait_for_an_approval')?['body/outcome'] is equal to Approve
       If yes AND triggerBody()?['Amount'] > 1000:
            -> Start and wait for an approval (Finance team)
       If yes AND amount <= 1000:
            -> Update item: Status = Approved
       If no:
            -> Update item: Status = Rejected
            -> Send an email notification to requester

Writing Back the Outcome and Notifying the Requester

After the approval outcome branches, always write the final status back to the source item — an 'Update item' action on the SharePoint list setting a Status column to Approved or Rejected — so the record of truth lives in the business system, not only in the flow's run history, which most requesters will never think to check. Pair that update with a 'Send an email (V2)' or 'Post adaptive card and wait for a response' notification back to the original requester that includes the approver's comments field from the approval response, since silently updating a status column without notifying the requester leaves them polling the list manually to find out what happened.

🏏

Cricket analogy: The official scorecard, not a fan's memory of the game, is the permanent record of a match's result, mirroring how the SharePoint Status column — not the flow's run history — is the durable record of an approval's outcome.

If the flow's trigger is 'When an item is created' but the flow also updates that same item's Status column, make sure the update does not use a trigger condition or filter that causes the flow to re-trigger itself — updating an item that was just created does not re-fire a 'created' trigger, but a poorly scoped 'When an item is created or modified' trigger on the same list can cause an infinite loop if it isn't excluded from firing on its own status update.

Testing and Handling Approval Timeouts

Every 'Start and wait for an approval' action has a configurable timeout (default 30 days) after which the flow proceeds automatically with an outcome that must be handled explicitly — typically by escalating to a backup approver or auto-rejecting with a note that the request expired — rather than leaving the Condition branch to fail silently on an unexpected outcome value. Test the flow using the Power Automate mobile app's Approvals tab to actually approve or reject as a real approver would, not just by inspecting the flow's test run history, since the mobile and Teams adaptive card experiences sometimes surface fields differently than the designer's simulated test run.

🏏

Cricket analogy: A rain-affected match has a defined reserve-day cutoff after which the result is decided by a fallback method like the Duckworth-Lewis calculation rather than staying undecided indefinitely, mirroring an approval's timeout forcing a fallback outcome.

Use 'Post adaptive card and wait for a response' instead of 'Start and wait for an approval' when you need a richer response than Approve/Reject — for example, capturing a free-text comment, a dropdown selection, or multiple fields from the approver in a single interactive Teams card.

  • 'Start and wait for an approval' pauses flow execution until the assigned approver responds or the configured timeout is reached.
  • Use 'Everyone must approve' for true parallel approval, not chained sequential approval actions.
  • Branch on outputs('...')?['body/outcome'] to route Approve versus Reject logic, adding threshold-based Conditions for multi-stage escalation.
  • Reference approvers dynamically (e.g. Get manager V2) rather than hardcoding email addresses.
  • Always write the final outcome back to the source list item so it isn't only visible in flow run history.
  • Notify the requester with the approver's comments, not just a silent status change.
  • Explicitly handle the approval's timeout outcome rather than assuming Approve/Reject are the only possible results.
  • Test using the real mobile/Teams Approvals experience, not only the designer's simulated test run.

Practice what you learned

Was this page helpful?

Topics covered

#Programming#PowerAutomateStudyNotes#BuildingAnApprovalWorkflow#Building#Approval#Workflow#Anatomy#StudyNotes#SkillVeris#ExamPrep

Frequently Asked Questions

21 categories · pick one to explore

Where can I get free study notes for programming and tech subjects?
SkillVeris offers completely free study notes covering programming and tech subjects, with no signup fees or paywalls. The notes are structured by course and topic, written for quick understanding, and enriched with the Learn Through Hobbies analogy method, so you can revise concepts through cricket, music, gaming, cooking and more.
Are SkillVeris study notes good for exam revision?
Yes, the study notes are designed for efficient revision: each topic answers its heading immediately, keeps explanations concise, and links to related glossary terms and cheat sheets. Students preparing for university exams or certification tests use them as quick revision notes because they distil concepts without the padding of full textbooks.
What subjects do the free study notes cover?
The study notes span the platform's main domains, including AI and machine learning, Python and programming, web development, DevOps, cloud, security and databases. Coverage mirrors the 37 live courses, so notes exist for the topics you are actually studying, and new note sets are added as courses launch.
How are SkillVeris study notes different from regular textbooks?
The notes are answer-first, concise and free, whereas textbooks are long and often expensive. Each section explains one concept directly, then reinforces it through selectable hobby analogies like cricket or cooking. Notes also cross-link to the glossary, blog and cheat sheets, letting you jump to related material instantly instead of flipping pages.
Can I use the developer study material without creating an account?
The study notes are free to access, and SkillVeris does not charge anything for its developer study material at any point. Browsing notes is straightforward from the Study Notes section, and if you want progress tracking, certificates and AI Mentor conversations tied to your learning, a free account unlocks those extras.
Do the study notes explain concepts with analogies?
Yes, this is a signature SkillVeris feature. Study notes use the Learn Through Hobbies method, explaining technical concepts through analogies from twelve domains including cricket, music, gaming, photography, travel, movies, fitness, chess, cooking, finance, business and sports. You can switch the analogy domain instantly to whichever hobby makes the concept click.
Are the revision notes suitable for last-minute exam preparation?
Yes, revision notes on SkillVeris work well for last-minute preparation because every section states the answer in its first sentences, so skimming is genuinely effective. Pair them with the relevant cheat sheet for formulas and syntax, and use the glossary for any unfamiliar term you meet while cramming.
Is there free study material for AI and machine learning?
Yes, SkillVeris provides free study notes across its AI and ML catalogue, covering Python for AI, deep learning frameworks like PyTorch and TensorFlow, Hugging Face Transformers, Large Language Models, RAG, AI agents and MLOps. All of it is free, making it a strong resource for Indian students and global learners alike.
Can beginners understand the study notes, or are they for experts?
Beginners can absolutely use them. The notes are written in plain language, define terms as they appear, and lean on hobby analogies to make abstract ideas concrete. Difficulty scales with the underlying course level, so beginner-course notes stay gentle while advanced-course notes go deeper, and the glossary supports you throughout.
How do study notes connect with SkillVeris courses?
Study notes are organised by course and topic, so they map directly to the structured courses and their 24–40-lesson curriculum. Many learners study a lesson first, then use the matching notes for revision before module assessments and the final exam, where 80 percent is required to pass and earn the certificate.
Are there study notes for Python specifically?
Yes, Python is well covered through notes tied to the Python-focused courses, including Python for AI and ML. Topics span fundamentals through applied machine learning usage. You can reinforce the notes with Python practice in Code Lab, which runs code in your browser with no installation required.
Do the study notes include code examples?
Yes, study notes include code examples wherever a concept is best shown in code, alongside explanations, key points and analogies. Reading a snippet in the notes and then reproducing it yourself in Code Lab is an effective loop, since Code Lab lets you run code in the browser across six languages.
How often is new study material added to SkillVeris?
Study material grows alongside the course catalogue. Whenever new courses join the platform's 37 live courses, matching study notes, glossary entries and cheat sheets are added so the resources stay in sync. Existing notes are also refined over time, so it is worth revisiting topics you studied earlier.
Can I use SkillVeris notes to prepare for technical interviews?
Yes, the notes make excellent interview revision because they compress each concept into direct, answer-first explanations, which mirrors how you should answer interview questions. Combine them with the SkillVeris interview questions feature, which includes readiness scoring, to test whether your revision has actually made you interview-ready.
Are the study notes mobile-friendly for studying on the go?
Yes, the study notes are built to load fast and read comfortably on mobile devices, so you can revise during a commute or between classes. Sections are short and answer-first, which suits small screens, and analogy switching works on mobile too, letting you study anywhere without carrying books.
What is the difference between study notes and cheat sheets?
Study notes explain concepts in depth with context, examples and analogies, making them ideal for learning and revision. Cheat sheets are compact quick-reference summaries of syntax, commands and key facts, ideal once you already understand a topic. Most learners study the notes first, then keep the cheat sheet handy while coding.
Do study notes help if I am stuck on a course lesson?
Yes, reading the matching study notes often clarifies a lesson because the same concept is explained from a different angle, frequently with a different analogy. If you are still stuck, ask the AI Mentor, which answers 24/7 at Quick, Detailed or Deep-dive depth until the idea genuinely makes sense.
Is there free study material for DevOps and cloud topics?
Yes, SkillVeris carries free study notes for DevOps and cloud topics as part of its coverage across 37 live courses. The material suits learners following the DevOps Engineer or Cloud Engineer paths, and it links to related glossary terms and cheat sheets so you can revise the whole toolchain in one place.
Can school or college students in India use these notes for projects?
Yes, students across India and worldwide use SkillVeris notes for coursework, projects and exam preparation, and everything is free, which matters for student budgets. The notes explain concepts clearly enough to cite in project reports, and Code Lab lets you prototype the project code directly in your browser.
How should I combine study notes with other SkillVeris resources?
A proven loop: learn from a course lesson, revise with the matching study notes, look up unfamiliar terms in the glossary, keep the cheat sheet open while practising in Code Lab, and quiz yourself with interview questions. The AI Mentor fills any remaining gaps 24/7, at whatever depth you need.

What Learners Say

Real journeys from the SkillVeris community — swipe for more.

SkillVeris taught me Python through Cricket. Now I’m building real projects and feeling confident!
Arjun S. · B.Tech Student
The best platform for hobby-based learning. Concepts finally stick.
Priya R. · Data Analyst
I went from zero coding to a portfolio of projects — all by learning through my love for gaming. Landed my first internship!
Kabir M. · CS Undergraduate
Trending Topics50 popular tags — tap to explore
Trending CoursesAll 37 free courses — tap to browse