Power Automate — Full Product Reference
This skill provides comprehensive knowledge for designing, building, troubleshooting, and
governing all Power Automate product areas: cloud flows, desktop flows/RPA, Business Process
Flows, AI Builder, Process Mining, Approvals, custom connectors, governance, and ALM.
Product Areas at a Glance
| Area |
Description |
Entry Point |
| Cloud flows |
Automated, instant, and scheduled flows; connector-based integration |
references/cloud-flows.md |
| Desktop flows / RPA |
UI automation, attended/unattended bots, PAD recorder |
references/desktop-flows.md |
| Business Process Flows |
Dataverse-guided stage/step processes for model-driven apps |
references/business-process-flows.md |
| AI Builder |
Form processing, document intelligence, prediction, classification |
references/ai-builder.md |
| Process Mining |
Event log analysis, process discovery, conformance checking |
references/process-mining.md |
| Approvals |
Teams-integrated approvals, adaptive cards, delegation |
references/approvals-adaptive-cards.md |
| Connectors & triggers |
Standard/premium connectors, HTTP, throttling limits |
references/connectors-triggers.md |
| Error handling & retry |
Try/catch/finally scopes, run-after, retry policies |
references/error-handling-retry.md |
| Custom connectors |
OpenAPI spec, code policies, certification, environment mgmt |
references/custom-connectors.md |
| Governance & DLP |
Admin center, DLP policies, CoE Toolkit, environment strategy |
references/governance-dlp.md |
| Expressions |
Full expression function library, operators, type coercions |
references/expressions-advanced.md |
| Child flows & Pipelines |
Child flow patterns, Power Platform Pipelines CI/CD |
references/child-flows-pipelines.md |
Base URLs
Supported APIs
Dataverse Web API: https://{org}.{region}.dynamics.com/api/data/v9.2
Power Platform API: https://api.powerplatform.com/powerautomate/environments/{envId}
AI Builder API: https://{org}.{region}.dynamics.com/api/data/v9.2/msdyn_AIModels
Process Mining API: https://api.powerplatform.com/processinsights/environments/{envId}
Approvals API: https://{org}.{region}.dynamics.com/api/data/v9.2/approvals
Legacy API (Diagnostic Only — Do Not Use in Production)
https://api.flow.microsoft.com/providers/Microsoft.ProcessSimple/environments/{envId}
Cloud Flow Management (Dataverse Web API)
Core Endpoints
| Method |
Endpoint |
Purpose |
| GET |
/api/data/v9.2/workflows?$filter=category eq 5 |
List cloud flows |
| GET |
/api/data/v9.2/workflows({workflowid}) |
Get specific flow |
| POST |
/api/data/v9.2/workflows |
Create flow |
| PATCH |
/api/data/v9.2/workflows({workflowid}) |
Update / enable / disable |
| DELETE |
/api/data/v9.2/workflows({workflowid}) |
Delete flow |
category values: 0 = Classic workflow, 5 = Cloud flow, 6 = Desktop flow, 9 = BPF
Enable/disable:
PATCH /api/data/v9.2/workflows({workflowid})
{ "statecode": 1 }
statecode: 0 = Off/Draft, 1 = On/Activated.
Flow Run Status Values
| Status |
Description |
Running |
Currently executing |
Succeeded |
Completed successfully |
Failed |
Failed — check error.code and error.message |
Cancelled |
Manually cancelled |
TimedOut |
Exceeded 30-day timeout |
Skipping |
Trigger condition not met |
Suspended |
Paused — waiting for approval or external signal |
OData Query Patterns
# Active cloud flows
GET /api/data/v9.2/workflows?$filter=category eq 5 and statecode eq 1
&$select=name,statecode,workflowid,modifiedon&$orderby=modifiedon desc&$top=50
# Flows by owner
GET /api/data/v9.2/workflows?$filter=category eq 5 and _ownerid_value eq '{userId}'
&$expand=ownerid($select=fullname)
# Flows with recent failures
GET /api/data/v9.2/workflows?$filter=category eq 5 and statuscode eq 2
&$orderby=modifiedon desc
Trigger Types
| Trigger |
type |
kind |
Description |
| Automated / Event |
ApiConnectionWebhook |
— |
Connector event (SharePoint, Dataverse, etc.) |
| Scheduled |
Recurrence |
— |
Time-based schedule (min 60s) |
| Instant / Button |
Request |
Button |
User-triggered |
| HTTP Webhook |
Request |
Http |
External webhook with SAS-signed URL |
| Power Apps V2 |
Request |
PowerAppsV2 |
Strongly typed canvas app trigger |
| Power Pages |
Request |
PowerPagesV2 |
From Power Pages form submit |
| Dataverse row |
OpenApiConnection |
— |
When row is added/modified/deleted |
Recurrence example:
{
"type": "Recurrence",
"recurrence": {
"frequency": "Day", "interval": 1,
"startTime": "2026-01-01T08:00:00Z",
"timeZone": "Central Standard Time",
"schedule": { "hours": ["8","17"], "minutes": ["0"] }
}
}
Solution-Aware Flow Concepts
Connection References
Decouple connector configuration from concrete connections:
- Defined in solution as a component
- Must be re-mapped on import to target environment connections
- Allows same flow to work across dev/test/prod without editing
Environment Variables
| Type |
Reference Syntax |
Notes |
String |
@parameters('env_SchemaName') |
URLs, IDs, names |
Number |
@parameters('env_SchemaName') |
Thresholds, limits |
Boolean |
@parameters('env_SchemaName') |
Feature flags |
JSON |
@parameters('env_SchemaName') |
Structured config |
Secret |
Via Key Vault reference |
Credentials — never plain text |
Data source |
Dataverse table reference |
For data source connectors |
Values kept in unmanaged layer for per-environment overrides.
Managed vs Unmanaged Layers
| Aspect |
Managed |
Unmanaged |
| Editable |
No (locked) |
Yes |
| Removal |
Components removed on uninstall |
Manual cleanup |
| Use case |
Production deployment |
Development |
| Layering |
Base layer |
Customization layer (wins) |
Use Remove active customization to revert unmanaged changes.
Retry Policies
| Policy |
Description |
exponential |
Default — exponential backoff |
fixed |
Constant delay between retries |
none |
Fail immediately — no retries |
Limits: Max 90 retries, max 1-day delay, min 5s delay.
Triggers: 408, 429, 5xx. Retry-After header is honored.
Run-after statuses: is successful | has failed | is skipped | has timed out
Scope-based try/catch/finally:
Scope: "Try" → business logic
Scope: "Catch" → run after: Try has failed
Log error, notify
Scope: "Finally" → run after: Catch succeeded / failed / skipped
Cleanup, release locks
Connector Throttle Limits
| Connector |
Limit |
Window |
Notes |
| SharePoint |
600 calls |
60s per connection |
Per-connection |
| Office 365 Outlook |
300 calls |
60s per connection |
|
| Dataverse (Web API) |
6,000 requests |
5-min sliding window per user |
|
| Custom connectors |
500 requests |
60s per connection |
Default |
| Power Automate Mgmt |
5 GET / 300 non-GET |
60s / 3,600s per connection |
Admin ops |
| HTTP connector |
No published limit |
— |
Subject to burst cap |
Platform burst cap: 100,000 actions / 5 minutes across all flows in an environment.
Plan Types & Licensing
| Plan |
Cost |
Power Platform Requests/Day |
Premium Connectors |
RPA |
| Power Automate Premium |
$15/user/mo |
40,000 |
Yes |
Attended |
| Power Automate Process |
Per-flow |
250,000 (stackable) |
Yes |
Unattended |
| Power Automate Hosted Process |
Per-flow |
250,000 |
Yes |
Hosted unattended |
| Seeded (M365) |
Included |
~10,000 (Low profile) |
No |
No |
| Pay-as-you-go |
Per run |
10M (Extended) |
Yes |
Yes |
AI Builder credits: Separate from PPR. Included in Premium (500 credits/user/mo); pooled at tenant level.
Required Permissions
| Role |
Scope |
Capabilities |
| Environment Maker |
Environment |
Create flows, manage own flows |
| Environment Admin |
Environment |
All flows visible, manage all resources |
| System Administrator |
Dataverse |
Full admin including schema |
| Flow co-owner |
Per flow |
Full edit/delete/share |
| Flow run-only user |
Per flow |
Trigger only |
| Process Mining Contributor |
Environment |
Create/edit mining processes |
| AI Builder Customizer |
Dataverse |
Create/train AI models |
Common Error Codes
| Code |
HTTP |
Cause |
Remediation |
ActionFailed |
Varies |
Generic failure |
Check inner error details |
TooManyRequests |
429 |
Throttle exceeded |
Add delay, reduce concurrency |
RequestTimeout |
408 |
Action timed out |
Increase timeout or split work |
Unauthorized |
401 |
Connection expired |
Re-authenticate connection |
Forbidden |
403 |
DLP / permissions |
Check DLP group, RBAC role |
NotFound |
404 |
Resource missing |
Verify list/table/user exists |
BadGateway |
502 |
Connector unavailable |
Retry with exponential backoff |
ServiceUnavailable |
503 |
Platform outage |
Monitor service health |
-2147015902 |
Dataverse |
Duplicate detection |
Check duplicate detection rules |
-2147015898 |
Dataverse |
Privilege check failed |
Check security role assignment |
DLP violations: Flow suspended — resolve by moving connectors to same DLP group, splitting flow, or requesting exception.
Core Design Patterns
Approval Flow
- Trigger: item created/modified in SharePoint or Dataverse
Start and wait for an approval (Approve/Reject - First to respond)
- Condition on
outcome → approved branch / rejected branch
- Wrap in try/catch scope
- Retry policy:
none for approval actions (avoid duplicate requests)
Resilient Integration Flow
- Scope-based try/catch/finally
- Exponential retry on external API calls
- Concurrency limit: prevent parallel runs causing throttle
- Compose actions to capture intermediate state for debugging
- Error notification in catch (Teams adaptive card)
- Cleanup in finally (update status record, release locks)
Solution-Aware Deployment
- Build flow in dev inside a solution
- Use connection references (never hardcode connections)
- Use environment variables for all config values
- Export as managed; import to target; re-map connection references
- Set environment variable values in target layer
Failed Run Investigation
GET /powerautomate/environments/{envId}/flowRuns?workflowId={id} — find status: Failed runs
- Check
error.code + error.message
429 → check throttle table, add delays
401 → re-authenticate connection
- DLP → check connector group placement
- Resubmit:
ResubmitFlow management connector action
Decision Tree
- New flow architecture (trigger, branches, retries, idempotency) →
/flow-design
- Failed / timed-out / intermittent run →
/flow-debug
- Pre-promotion readiness check →
/flow-deploy-check
- AI Builder model setup →
/pa-ai-builder
- Custom connector creation →
/pa-custom-connector
- BPF design →
/pa-bpf-design
- Governance, DLP audit, CoE →
/pa-governance
- Full setup & onboarding →
/flow-setup
Progressive Disclosure — Reference Files
| Topic |
File |
| Flow types, triggers, expressions, control flow, environment variables |
references/cloud-flows.md |
| Standard/premium connectors, HTTP action, throttling limits, connection references |
references/connectors-triggers.md |
| Try/catch/finally, run-after, retry policies, dead letter, timeout |
references/error-handling-retry.md |
| PAD recorder, UI/web automation, attended/unattended, machine groups, SAP/Citrix |
references/desktop-flows.md |
| Business Process Flows — stages, steps, branching, Dataverse integration |
references/business-process-flows.md |
| AI Builder — form processing, document intelligence, prediction, custom models |
references/ai-builder.md |
| Process Mining — event logs, discovery, conformance, KPIs, analytics |
references/process-mining.md |
| Approvals — Teams adaptive cards, parallel/sequential, delegation, mobile |
references/approvals-adaptive-cards.md |
| Custom connectors — OpenAPI spec, code policies, certification |
references/custom-connectors.md |
| Governance — DLP policies, admin center, CoE Toolkit, environment strategy |
references/governance-dlp.md |
| Expression function library — string, date, number, array, type coercions |
references/expressions-advanced.md |
| Child flows, Power Platform Pipelines, CI/CD deployment patterns |
references/child-flows-pipelines.md |
1---2name: power-automate3description: Deep expertise in all Power Automate product areas: cloud flows (automated, instant, scheduled), desktop flows and RPA, Business Process Flows, AI Builder integration, Process Mining, Approvals, custom connectors, governance and DLP, advanced expressions, child flows, Power Platform Pipelines, and solution-aware ALM. Covers Dataverse Web API, Power Platform API, connector throttling, retry policies, environment strategy, CoE Toolkit, and end-to-end flow lifecycle from design through production.4---56# Power Automate — Full Product Reference78This skill provides comprehensive knowledge for designing, building, troubleshooting, and9governing all Power Automate product areas: cloud flows, desktop flows/RPA, Business Process10Flows, AI Builder, Process Mining, Approvals, custom connectors, governance, and ALM.1112## Product Areas at a Glance1314| Area | Description | Entry Point |15|---|---|---|16| **Cloud flows** | Automated, instant, and scheduled flows; connector-based integration | [references/cloud-flows.md](./references/cloud-flows.md) |17| **Desktop flows / RPA** | UI automation, attended/unattended bots, PAD recorder | [references/desktop-flows.md](./references/desktop-flows.md) |18| **Business Process Flows** | Dataverse-guided stage/step processes for model-driven apps | [references/business-process-flows.md](./references/business-process-flows.md) |19| **AI Builder** | Form processing, document intelligence, prediction, classification | [references/ai-builder.md](./references/ai-builder.md) |20| **Process Mining** | Event log analysis, process discovery, conformance checking | [references/process-mining.md](./references/process-mining.md) |21| **Approvals** | Teams-integrated approvals, adaptive cards, delegation | [references/approvals-adaptive-cards.md](./references/approvals-adaptive-cards.md) |22| **Connectors & triggers** | Standard/premium connectors, HTTP, throttling limits | [references/connectors-triggers.md](./references/connectors-triggers.md) |23| **Error handling & retry** | Try/catch/finally scopes, run-after, retry policies | [references/error-handling-retry.md](./references/error-handling-retry.md) |24| **Custom connectors** | OpenAPI spec, code policies, certification, environment mgmt | [references/custom-connectors.md](./references/custom-connectors.md) |25| **Governance & DLP** | Admin center, DLP policies, CoE Toolkit, environment strategy | [references/governance-dlp.md](./references/governance-dlp.md) |26| **Expressions** | Full expression function library, operators, type coercions | [references/expressions-advanced.md](./references/expressions-advanced.md) |27| **Child flows & Pipelines** | Child flow patterns, Power Platform Pipelines CI/CD | [references/child-flows-pipelines.md](./references/child-flows-pipelines.md) |2829---3031## Base URLs3233### Supported APIs3435```36Dataverse Web API: https://{org}.{region}.dynamics.com/api/data/v9.237Power Platform API: https://api.powerplatform.com/powerautomate/environments/{envId}38AI Builder API: https://{org}.{region}.dynamics.com/api/data/v9.2/msdyn_AIModels39Process Mining API: https://api.powerplatform.com/processinsights/environments/{envId}40Approvals API: https://{org}.{region}.dynamics.com/api/data/v9.2/approvals41```4243### Legacy API (Diagnostic Only — Do Not Use in Production)4445```46https://api.flow.microsoft.com/providers/Microsoft.ProcessSimple/environments/{envId}47```4849---5051## Cloud Flow Management (Dataverse Web API)5253### Core Endpoints5455| Method | Endpoint | Purpose |56|---|---|---|57| GET | `/api/data/v9.2/workflows?$filter=category eq 5` | List cloud flows |58| GET | `/api/data/v9.2/workflows({workflowid})` | Get specific flow |59| POST | `/api/data/v9.2/workflows` | Create flow |60| PATCH | `/api/data/v9.2/workflows({workflowid})` | Update / enable / disable |61| DELETE | `/api/data/v9.2/workflows({workflowid})` | Delete flow |6263**`category` values:** `0` = Classic workflow, `5` = Cloud flow, `6` = Desktop flow, `9` = BPF6465**Enable/disable:**66```json67PATCH /api/data/v9.2/workflows({workflowid})68{ "statecode": 1 }69```70`statecode`: `0` = Off/Draft, `1` = On/Activated.7172### Flow Run Status Values7374| Status | Description |75|---|---|76| `Running` | Currently executing |77| `Succeeded` | Completed successfully |78| `Failed` | Failed — check `error.code` and `error.message` |79| `Cancelled` | Manually cancelled |80| `TimedOut` | Exceeded 30-day timeout |81| `Skipping` | Trigger condition not met |82| `Suspended` | Paused — waiting for approval or external signal |8384### OData Query Patterns8586```87# Active cloud flows88GET /api/data/v9.2/workflows?$filter=category eq 5 and statecode eq 189 &$select=name,statecode,workflowid,modifiedon&$orderby=modifiedon desc&$top=509091# Flows by owner92GET /api/data/v9.2/workflows?$filter=category eq 5 and _ownerid_value eq '{userId}'93 &$expand=ownerid($select=fullname)9495# Flows with recent failures96GET /api/data/v9.2/workflows?$filter=category eq 5 and statuscode eq 297 &$orderby=modifiedon desc98```99100---101102## Trigger Types103104| Trigger | `type` | `kind` | Description |105|---|---|---|---|106| Automated / Event | `ApiConnectionWebhook` | — | Connector event (SharePoint, Dataverse, etc.) |107| Scheduled | `Recurrence` | — | Time-based schedule (min 60s) |108| Instant / Button | `Request` | `Button` | User-triggered |109| HTTP Webhook | `Request` | `Http` | External webhook with SAS-signed URL |110| Power Apps V2 | `Request` | `PowerAppsV2` | Strongly typed canvas app trigger |111| Power Pages | `Request` | `PowerPagesV2` | From Power Pages form submit |112| Dataverse row | `OpenApiConnection` | — | When row is added/modified/deleted |113114**Recurrence example:**115```json116{117 "type": "Recurrence",118 "recurrence": {119 "frequency": "Day", "interval": 1,120 "startTime": "2026-01-01T08:00:00Z",121 "timeZone": "Central Standard Time",122 "schedule": { "hours": ["8","17"], "minutes": ["0"] }123 }124}125```126127---128129## Solution-Aware Flow Concepts130131### Connection References132133Decouple connector configuration from concrete connections:134- Defined in solution as a component135- Must be re-mapped on import to target environment connections136- Allows same flow to work across dev/test/prod without editing137138### Environment Variables139140| Type | Reference Syntax | Notes |141|---|---|---|142| `String` | `@parameters('env_SchemaName')` | URLs, IDs, names |143| `Number` | `@parameters('env_SchemaName')` | Thresholds, limits |144| `Boolean` | `@parameters('env_SchemaName')` | Feature flags |145| `JSON` | `@parameters('env_SchemaName')` | Structured config |146| `Secret` | Via Key Vault reference | Credentials — never plain text |147| `Data source` | Dataverse table reference | For data source connectors |148149Values kept in unmanaged layer for per-environment overrides.150151### Managed vs Unmanaged Layers152153| Aspect | Managed | Unmanaged |154|---|---|---|155| Editable | No (locked) | Yes |156| Removal | Components removed on uninstall | Manual cleanup |157| Use case | Production deployment | Development |158| Layering | Base layer | Customization layer (wins) |159160Use `Remove active customization` to revert unmanaged changes.161162---163164## Retry Policies165166| Policy | Description |167|---|---|168| `exponential` | Default — exponential backoff |169| `fixed` | Constant delay between retries |170| `none` | Fail immediately — no retries |171172**Limits:** Max 90 retries, max 1-day delay, min 5s delay.173**Triggers:** `408`, `429`, `5xx`. `Retry-After` header is honored.174175**Run-after statuses:** `is successful` | `has failed` | `is skipped` | `has timed out`176177**Scope-based try/catch/finally:**178```179Scope: "Try" → business logic180Scope: "Catch" → run after: Try has failed181 Log error, notify182Scope: "Finally" → run after: Catch succeeded / failed / skipped183 Cleanup, release locks184```185186---187188## Connector Throttle Limits189190| Connector | Limit | Window | Notes |191|---|---|---|---|192| SharePoint | 600 calls | 60s per connection | Per-connection |193| Office 365 Outlook | 300 calls | 60s per connection | |194| Dataverse (Web API) | 6,000 requests | 5-min sliding window per user | |195| Custom connectors | 500 requests | 60s per connection | Default |196| Power Automate Mgmt | 5 GET / 300 non-GET | 60s / 3,600s per connection | Admin ops |197| HTTP connector | No published limit | — | Subject to burst cap |198199**Platform burst cap:** 100,000 actions / 5 minutes across all flows in an environment.200201---202203## Plan Types & Licensing204205| Plan | Cost | Power Platform Requests/Day | Premium Connectors | RPA |206|---|---|---|---|---|207| Power Automate Premium | $15/user/mo | 40,000 | Yes | Attended |208| Power Automate Process | Per-flow | 250,000 (stackable) | Yes | Unattended |209| Power Automate Hosted Process | Per-flow | 250,000 | Yes | Hosted unattended |210| Seeded (M365) | Included | ~10,000 (Low profile) | No | No |211| Pay-as-you-go | Per run | 10M (Extended) | Yes | Yes |212213**AI Builder credits:** Separate from PPR. Included in Premium (500 credits/user/mo); pooled at tenant level.214215---216217## Required Permissions218219| Role | Scope | Capabilities |220|---|---|---|221| Environment Maker | Environment | Create flows, manage own flows |222| Environment Admin | Environment | All flows visible, manage all resources |223| System Administrator | Dataverse | Full admin including schema |224| Flow co-owner | Per flow | Full edit/delete/share |225| Flow run-only user | Per flow | Trigger only |226| Process Mining Contributor | Environment | Create/edit mining processes |227| AI Builder Customizer | Dataverse | Create/train AI models |228229---230231## Common Error Codes232233| Code | HTTP | Cause | Remediation |234|---|---|---|---|235| `ActionFailed` | Varies | Generic failure | Check inner error details |236| `TooManyRequests` | 429 | Throttle exceeded | Add delay, reduce concurrency |237| `RequestTimeout` | 408 | Action timed out | Increase timeout or split work |238| `Unauthorized` | 401 | Connection expired | Re-authenticate connection |239| `Forbidden` | 403 | DLP / permissions | Check DLP group, RBAC role |240| `NotFound` | 404 | Resource missing | Verify list/table/user exists |241| `BadGateway` | 502 | Connector unavailable | Retry with exponential backoff |242| `ServiceUnavailable` | 503 | Platform outage | Monitor service health |243| `-2147015902` | Dataverse | Duplicate detection | Check duplicate detection rules |244| `-2147015898` | Dataverse | Privilege check failed | Check security role assignment |245246**DLP violations:** Flow suspended — resolve by moving connectors to same DLP group, splitting flow, or requesting exception.247248---249250## Core Design Patterns251252### Approval Flow2531. Trigger: item created/modified in SharePoint or Dataverse2542. `Start and wait for an approval` (Approve/Reject - First to respond)2553. Condition on `outcome` → approved branch / rejected branch2564. Wrap in try/catch scope2575. Retry policy: `none` for approval actions (avoid duplicate requests)258259### Resilient Integration Flow2601. Scope-based try/catch/finally2612. Exponential retry on external API calls2623. Concurrency limit: prevent parallel runs causing throttle2634. Compose actions to capture intermediate state for debugging2645. Error notification in catch (Teams adaptive card)2656. Cleanup in finally (update status record, release locks)266267### Solution-Aware Deployment2681. Build flow in dev inside a solution2692. Use connection references (never hardcode connections)2703. Use environment variables for all config values2714. Export as managed; import to target; re-map connection references2725. Set environment variable values in target layer273274### Failed Run Investigation2751. `GET /powerautomate/environments/{envId}/flowRuns?workflowId={id}` — find `status: Failed` runs2762. Check `error.code` + `error.message`2773. `429` → check throttle table, add delays2784. `401` → re-authenticate connection2795. DLP → check connector group placement2806. Resubmit: `ResubmitFlow` management connector action281282---283284## Decision Tree2852861. **New flow architecture** (trigger, branches, retries, idempotency) → `/flow-design`2872. **Failed / timed-out / intermittent run** → `/flow-debug`2883. **Pre-promotion readiness check** → `/flow-deploy-check`2894. **AI Builder model setup** → `/pa-ai-builder`2905. **Custom connector creation** → `/pa-custom-connector`2916. **BPF design** → `/pa-bpf-design`2927. **Governance, DLP audit, CoE** → `/pa-governance`2938. **Full setup & onboarding** → `/flow-setup`294295---296297## Progressive Disclosure — Reference Files298299| Topic | File |300|---|---|301| Flow types, triggers, expressions, control flow, environment variables | [`references/cloud-flows.md`](./references/cloud-flows.md) |302| Standard/premium connectors, HTTP action, throttling limits, connection references | [`references/connectors-triggers.md`](./references/connectors-triggers.md) |303| Try/catch/finally, run-after, retry policies, dead letter, timeout | [`references/error-handling-retry.md`](./references/error-handling-retry.md) |304| PAD recorder, UI/web automation, attended/unattended, machine groups, SAP/Citrix | [`references/desktop-flows.md`](./references/desktop-flows.md) |305| Business Process Flows — stages, steps, branching, Dataverse integration | [`references/business-process-flows.md`](./references/business-process-flows.md) |306| AI Builder — form processing, document intelligence, prediction, custom models | [`references/ai-builder.md`](./references/ai-builder.md) |307| Process Mining — event logs, discovery, conformance, KPIs, analytics | [`references/process-mining.md`](./references/process-mining.md) |308| Approvals — Teams adaptive cards, parallel/sequential, delegation, mobile | [`references/approvals-adaptive-cards.md`](./references/approvals-adaptive-cards.md) |309| Custom connectors — OpenAPI spec, code policies, certification | [`references/custom-connectors.md`](./references/custom-connectors.md) |310| Governance — DLP policies, admin center, CoE Toolkit, environment strategy | [`references/governance-dlp.md`](./references/governance-dlp.md) |311| Expression function library — string, date, number, array, type coercions | [`references/expressions-advanced.md`](./references/expressions-advanced.md) |312| Child flows, Power Platform Pipelines, CI/CD deployment patterns | [`references/child-flows-pipelines.md`](./references/child-flows-pipelines.md) |