Skip to main content

Flowon and the Microsoft Ecosystem

Flowon Logic Composer, Flowon Process Orchestrator, and Flowon API Builder are delivered as native Dataverse managed solutions. They are built using the same SDK, the same data platform, and the same security model that Microsoft's own products use—not connected to D365 through APIs—but operating inside it.

This distinction matters. An external tool calling D365 crosses a network boundary, carries its own authentication, runs in a separate transaction, and can partially fail. Flowon operates inside the same process, in the same transaction, with the same security context, achieving sub-millisecond execution and no synchronization gap.

External Tool
D365──[ API call ]──▶Tool
  • 100–500ms API call latency
  • Separate authentication token
  • Separate transaction — can partially fail
  • Network dependency
  • Possible synchronisation gap
vs
Flowon Native
SHARED RUNTIME
D365◀── same SDK ──▶Flowon
same transactionsame security contextsame database · <1ms
  • Sub-millisecond — same SDK, same process
  • Same security context, no auth overhead
  • Same transaction — atomic by design
  • No network boundary
  • Zero synchronisation gap

How Flowon Taps Into Dataverse

Flowon Logic Composer

Flowon Logic Composer registers directly against the Dataverse plugin execution pipeline the same pipeline D365 uses for its own internal operations. When a record is created, updated, or deleted in D365, Flowon Logic Composer participates in that transaction at the same execution points as a native plugin:

TriggerA record is saved in Dynamics 365
DATAVERSE PLUGIN EXECUTION PIPELINE
Pre-Validation
  • Validation Sets enforce data rules
  • Fires before the record is written
Pre-Operation
  • Logic Flows execute — data manipulation, calculations
  • Decision Tables and Decision Trees evaluated
  • Field defaults applied
DATABASE WRITE
Post-Operation
  • Logic Recipes fire — downstream logic
  • Machine Workflows, Event publishing
  • Service Connection calls

Every construct: Validations, Decision Tables, Decision Trees, Logic Flows, Machine Workflows, Recipes, Events, Schedules, Service Connections is configured no-code in Flowon's visual designer and stored as Flowon Language (FoL) artifacts in Dataverse. Logic inherits the D365 entity model, security context, and row-level access rules on every execution.

Flowon Process Orchestrator

Flowon Process Orchestrator attaches to D365 entities through the same Dataverse event infrastructure that drives Logic Recipes. When a triggering condition is met on any D365 entity a record created, a field changed, a status updated Process Orchestrator creates a process instance and begins executing the defined process definition.

TriggerD365 entity event fires — create / update / status change
Process CreatedFlowon Process Orchestrator creates a Process Instance
PROCESS INSTANCE LIFECYCLE
Stage Entry
  • On-Entering Logic Flows execute
  • Assignment rules applied
  • SLA timer starts
Stage Active
  • Task completion tracked
  • Escalation engine monitors SLA
  • Human actors work the assignment
Stage Exit
  • On-Exiting Logic Flows execute
  • Transition guards evaluated
  • Next stage determined by routing rules
next stage or process complete
Full audit trail written to Dataverse at every step

Every stage in a Process Orchestrator process can call Flowon Logic Composer using Decision Tables, Logic Flows, and Validation Sets as the intelligence layer for routing, assignment, and automation decisions. Process Orchestrator stores all process state active instances, stage history, SLA status, assignment records, trace events as native Dataverse records, making the full execution history available to every other Microsoft tool that reads Dataverse.

Flowon API Builder

Flowon API Builder sits in front of Dataverse and Dataverse, exposing their capabilities as governed REST and GraphQL endpoints configured no-code inside D365. The API runtime reads its configuration entity definitions, query shapes, access policies, action mappings from Dataverse, and serves requests through an .NET runtime that handles authentication, request validation, response mapping, and OpenAPI documentation generation automatically.

CallerExternal application — web · mobile · portal · partner system
REST or GraphQL request
FLOWON API RUNTIME
JWT authentication validated
Access policy evaluatedrole · pre-conditions
Request mapped to Dataverse operation

├──Entity read / writeDataverse Web API
├──Query executionDataverse FetchXML / OData
├──File upload / downloadDataverse file storage
├──Flowon Logic actionLogic Flow execution
└──Flowon Process Orchestrator actionprocess instance operation

Response mapped and returned
OpenAPI spec auto-generated and served at /api/schema

API configuration is versioned independently: Draft, Published, and versioned releases so consuming applications are not affected by configuration changes until a new version is explicitly published. All Flowon API Builder configuration is stored in Dataverse as FoL artifacts and managed through the same CI/CD pipeline as Logic and Process Orchestrator.

What the three products inherit from D365: The Dataverse entity model, the plugin pipeline, the security and row-level access model, the async job infrastructure, the Dataverse storage layer, and the Microsoft Entra identity model.

What the three products add to D365: No-code business rule execution at the plugin level (Logic). Stage-by-stage process orchestration with SLA, assignment, and audit trail on any D365 entity (Process Orchestrator). Governed REST and GraphQL API exposure of D365 capabilities without backend development (API).


How Flowon Interacts With the Microsoft Ecosystem

Microsoft
Ecosystem
Power BI
Power Apps
Power Automate
Copilot + MCP
Azure AI Foundry
Flowon Logic
Flowon Process Orchestrator
Flowon API Builder
Flowon MCP
Foundation
Dataverse / Dynamics 365

Power BI

Power BI connects to Dataverse natively. Flowon Process Orchestrator writes all process execution data stage entries, exits, durations, assignments, SLA compliance signals, rework events as structured Dataverse records. Power BI reads this data through the same Dataverse connector it uses for all D365 data.

The result is that process performance becomes an analytics topic in the same environment as business data, with no additional pipeline, export, or data engineering. Cycle time, bottleneck identification, SLA compliance rates, team workload distribution all derivable from Flowon Process Orchestrator's Dataverse records via DirectQuery, always current.

Dataverse
Dataverse Connector
Power BI
Always
Standard D365 entity records
+ Now also
Flowon Process Orchestrator process execution records
Stage entries & exitsStage durationsAssignment recordsSLA compliance signalsRework eventsEscalation triggers

Power Apps

Power Apps (canvas apps, model-driven forms, Power Pages portals) interact with Flowon through two mechanisms.

Flowon API Builder provides the REST and GraphQL layer. Applications call Flowon API Builder endpoints to read and write D365 entity data, execute queries, trigger process actions, and upload or download files — without direct Dataverse access and without a custom backend. The API is configured no-code inside D365, versioned independently, and auto-generates its OpenAPI specification. A web app, mobile app, or customer portal calls a clean, governed API; Flowon API Builder handles the D365 interaction beneath it.

Flowon Process Orchestrator process state is stored in Dataverse and directly accessible to model-driven forms and PCF components through standard Dataverse queries no separate call, no API hop.

Canvas App / Power Pages
web · mobile · customer portal
Model-Driven Form / PCF
D365 native forms · custom components
REST · GraphQL
Flowon API Builder
Configured no-code in D365
Versioned independently
Auto-generated OpenAPI spec
No custom backend required
Dataverse Web API
or
reads directly
Dataverse
Flowon Process Orchestrator process records
Stage history and state
Same access model as any D365 data
No separate call, no API hop
Dataverse / Dynamics 365

Power Automate

Power Automate's connector library 400+ external systems handles integration work that Flowon is not designed for. The two products operate across a defined boundary.

Flowon Logic Composer machine workflows (logic flows) and Flowon Process Orchestrator stage logic trigger Power Automate flows by calling D365 custom actions a standard D365 mechanism that Power Automate already supports as a trigger. Power Automate takes over external connector work (DocuSign, SAP, Teams, payment gateways, and so on), then writes results back to D365 entity records. Flowon Logic Composer and Process Orchestrator respond to those record changes through the Dataverse plugin pipeline the same pipeline described above and advance the process state accordingly.

Neither product needs to know the internal mechanics of the other. The boundary is a D365 entity record. Flowon writes it, Power Automate reads it. Power Automate writes it, Flowon reads it.

Flowon LogicFlowon Process Orchestrator
stage logic · machine workflows
calls D365 custom action
Power Automate
trigger fires
external connector work
DocuSignSAPTeamsStripeSharePointServiceNowSalesforce400+ more
PA writes result to D365 entity record
D365 Entity Recordthe boundary
Flowon plugin pipeline fires on record change
process state advances

Flowon MCP Server and Copilot

Microsoft Copilot is becoming the primary interface for knowledge workers in Dataverse embedded in the D365 Customer Service Hub, Sales Hub, and across the Power Platform. It is the UI layer through which users increasingly ask questions, take actions, and manage their work. The quality of that experience depends entirely on what Copilot can reach and what it can do.

The Flowon MCP Server connects Copilot and any MCP-compatible AI model to the full operational depth of Flowon. It exposes 40+ structured tools across six capability groups: process discovery, diagnostics, SLA management, analytics, operational actions, and simulation. These are not generic data queries. They are purpose-built tools that give AI models the ability to reason about and act on live business operations.

The data these tools draw from is not limited to Process Orchestrator process records. Flowon Logic Composer writes business rule execution outcomes, decision results, validation events, and workflow traces to Dataverse. Flowon API Builder logs request patterns and action executions. The MCP Server surfaces the full picture what the business rules decided, where the process stands, what the API layer is being asked to do as structured, typed tool responses that AI models can reason with precisely.

Every tool call executes under the calling user's D365 identity, resolved through the Microsoft Entra On-Behalf-Of (OBO) flow. Dataverse row-level security, business unit scoping, and team membership apply to every query and every action. The AI sees exactly what the user is permitted to see, and acts only within their permission boundary.

Copilot embedded in D365
Customer Service · Sales · Power Platform
natural language intent
MCP tool call · user's D365 identity via Entra OBO
Flowon MCP Server40+ tools
Logic
rule outcomesdecision resultsvalidation events
Process Orchestrator
process state · stageSLA · assignmenthistory
API
action execution logrequest patterns
Actions
reassign · escalateadvance · notify
D365 security enforced on every call · no elevated permissions
process-aware response · actions execute natively in D365
Copilot responds in the same D365 interface
no context switch · no separate tool · native experience

This is the native Copilot experience: the user does not leave D365, does not open a separate tool, does not switch context. They ask Copilot in the interface they are already working in and Copilot draws on the full operational depth of Flowon to answer and act.

Azure AI Foundry & Flowon

Azure AI Foundry gives organisations access to 1,000+ AI models from Microsoft's own models to open-source and partner models hosted on Azure alongside the infrastructure to fine-tune, evaluate, and deploy them with enterprise governance. Prompt Flow enables multi-step AI pipelines. Azure AI Search provides vector and semantic search. Responsible AI tooling applies across every model and every output.

The value of that model catalogue and that infrastructure depends on the quality and structure of the data those models are trained on and scored against. Flowon provides a continuously growing, operationally grounded dataset in Dataverse that AI Foundry can consume directly.

Flowon Logic Composer writes every business rule execution to Dataverse which decision path was taken, which validation fired, which calculation produced which result, under what conditions. Flowon Process Orchestrator writes every process execution event — stage durations, routing decisions, assignment history, SLA outcomes, rework occurrences, escalation triggers. Flowon API Builder logs every action executed through the API layer. Together, this is a structured, timestamped, labelled record of how the business actually operates not sampled, not manually assembled, but captured automatically with every transaction.

Azure AI Foundry
Prompt FlowAI SearchRAI
1,000+ models
reads from Dataverse
Flowon Logic
rule executions
decision outcomes
validation events
calculation results
Flowon Process Orchestrator
process traces
stage durations
SLA results
routing decisions
Flowon API Builder
action execution logs
usage patterns
structuredlabelledtimestampedcontinuous
reads continuously
Fine-tunemodels on process execution patterns
Semantic searchacross historical process data
Predictive scoreon in-flight instances
Prompt Flowmulti-step reasoning pipelines
writes outputs back
risk scoresrecommendationspattern findings
D365 Forms
same environment
Power BI
same Dataverse connector
Copilot
same MCP layer
no separate reporting infrastructure required
feedback loop — AI investment grounded in operational data that reflects how the business actually runs

The result is a feedback loop: Flowon's operational data trains and informs AI Foundry models, and those models' outputs return to the same Dataverse environment where they surface through every Microsoft tool already connected to it. The AI investment Microsoft customers make through Azure AI Foundry is grounded in data that reflects how their business actually runs.


The Requirements-as-Code Dimension

One aspect of Flowon's interaction with the Microsoft ecosystem that distinguishes it from other tools is how its configuration is managed.

All Flowon Logic Composer, Process Orchestrator, and API definitions are expressed in Flowon Language (FoL) a declarative, JSON-based domain-specific language. These artifacts are stored in Dataverse, but they are also exported as files and managed in source control through Flowon CI/CD Tools.

This means that every business rule, every process definition, and every API configuration is:

  • Stored in Git with full version history
  • Deployable through automated CI/CD pipelines (Azure DevOps)
  • Portable between D365 environments with environment-specific mapping files
  • Reviewable through standard code review processes
  • Rollback-capable to any previous version
versionedauditableportablereviewablerollback-capable
Flowon LogicFlowon Process OrchestratorFlowon API Builder
domain expert changes a business rule in the visual designer
FoL artifact updated in Dataverse · exported to .flop file
Flowon CI/CD Tools
artifact exported as .flop file with environment mapping
committed to Git · pipeline triggers
Git · Azure DevOps pipeline
full version historycode reviewautomated pipelinerollback to any commit
environment mappings applied · UAT / Production GUIDs, URLs resolved
deployed to target D365 environment
the configuration that passed testing is exactly what gets deployed — no manual step
Dev
where changes are built
UAT
where behaviour is validated
Production
what passed testing, unchanged
same FoL artifact · same behaviour · Dev to Production

Every business rule, process definition, and API configuration is versioned, auditable, and manageable through standard engineering practices.


Cloud and On-Premises

Flowon Logic Composer, Process Orchestrator, and API run identically on Dataverse online and Dataverse on-premises. The product behaviour, configuration model, API runtime, and CI/CD tooling are the same in both environments. FoL artifacts the process definitions, business rules, API configurations are portable between them.

The Microsoft Power Platform, Copilot, MCP connectivity, and Azure AI Foundry require Dataverse online. These are architectural boundaries of the Microsoft platform on-premises D365 does not have access to these services regardless of what is installed on top of it.

Cloud
D365 Online · Dataverse
On-Premises
D365 · SQL Server
Flowon Language (FoL)
same artifact · same behaviour · fully portable
available
available
Flowon Logic
Flowon Process Orchestrator
Flowon API Builder
Flowon CI/CD Tools
Microsoft ecosystem · cloud only
Power BI
Power Apps + PCF
Power Automate
Copilot + MCP
Azure AI Foundry

On-premises organisations have full access to all Flowon products. The Microsoft cloud services analytics, AI, automation connectors, and conversational interfaces become available when the D365 deployment moves to the cloud.

Because FoL artifacts are portable, the implementation built on-premises deploys to D365 online without modification. The business rules, process definitions, and API configurations built today are the same ones that run in the cloud when the migration happens and at that point, the full Microsoft ecosystem layer connects to them immediately.


Alignment With Microsoft's Success by Design Framework

Microsoft FastTrack for Dataverse defines Success by Design as the implementation methodology for enterprise D365 projects. It structures delivery through a series of staged reviews — Solution Blueprint, Gap Analysis, Performance, Data Migration, Testing, and Cutover — each assessing whether the implementation is on track against a defined set of quality criteria.

Flowon is designed to support and reinforce every pillar of that framework. This is not incidental — it is a direct consequence of how Flowon is built and how it manages configuration.

Success by Design Review Stages
Microsoft FastTrack for Dynamics 365 · implementation methodology
FastTrack
01Initiate & Plan
02Design
03Build
04Test
05Deploy
06Operate
Flowon participates at every stage
Initiate & Plan
architecture · scope
managed solutions · FoL approach from day one
Design
solution blueprint
plugin pipeline · Dataverse-only · upgrade-safe
Build
configuration
Logic · Process Orchestrator · API — no-code · in-platform
Test
quality assurance
FoL portable · CI/CD · same artifact
Deploy
cutover readiness
export · apply-mappings · import · rollback
Operate
continuous improvement
no-code changes · Git history · same CI/CD

Solution Blueprint and Architecture Review

Success by Design requires the solution architecture to align with Microsoft's established patterns for D365 using platform-native extensibility rather than workarounds, maintaining upgrade compatibility, and avoiding architectural decisions that create long-term maintenance risk.

Flowon satisfies these requirements by design. It uses the Dataverse plugin pipeline, the D365 managed solution framework, and the standard Dataverse data model the same extensibility mechanisms Microsoft documents and supports. There are no custom database tables outside Dataverse, no bypass of the security model, no direct SQL access. The architecture is reviewable, explainable, and consistent with Microsoft's own guidance for how D365 should be extended.

Solution Blueprint Compliance
Microsoft extensibility guidance · Flowon alignment
Blueprint
Microsoft guidance
Flowon compliance
Use managed solutions
All Flowon products delivered as D365 managed solutions
Use plugin pipeline for logic
Flowon Logic, Process Orchestrator, and API register natively against the pipeline
Use Dataverse for all data
All Flowon config and runtime data lives in Dataverse — nothing outside
Maintain upgrade compatibility
No platform hacks, no direct SQL, no bypasses — upgrade-safe by construction
Architecture is reviewable, explainable, and consistent with Microsoft's own guidance for how D365 should be extended.

Gap Analysis and Fit Assessment

Success by Design includes a structured Gap Analysis review identifying where business requirements exceed the standard D365 capability set and how those gaps are addressed. The quality criterion is that gaps are addressed through platform-supported mechanisms, not custom code that increases complexity and maintenance overhead.

Flowon addresses this directly. Business rules, decision logic, process automation, and API exposure requirements that would otherwise require custom development are implemented through Flowon's no-code configuration layer, which is itself a managed solution running inside D365. The Gap Analysis reviewer sees a supported, documented product addressing the requirement, not bespoke code.

Gap Analysis — Requirements vs Flowon
gaps addressed through supported, in-platform products
Gap Analysis
Gap Analysis requirement
Flowon response
Complex business logic
Flowon Logic — no-code, in-platform, plugin-pipeline-native
Enterprise process management
Flowon Process Orchestrator — managed solution, Dataverse-backed process state
Custom API layer
Flowon API Builder — configured, versioned, OpenAPI-documented
All gaps addressed through supported, documented, in-platform products — no bespoke C# plugins, no custom assemblies to maintain.

Performance and Scalability Review

Success by Design's Performance review assesses whether the implementation will scale under production load examining synchronous plugin chains, database query patterns, and async execution strategies.

Flowon Logic Composer executes inside the Dataverse plugin pipeline in the same execution context as any native plugin. It is subject to the same timeout and resource governance rules that D365 enforces on all plugin code. Flowon Process Orchestrator uses Dataverse's async execution infrastructure for non-synchronous operations. Flowon API Builder runs as an .NET service with its own scaling characteristics, independent of the D365 plugin pipeline. These are architecturally sound patterns that a Success by Design Performance review can assess and validate against platform norms.

Performance and Scalability Profile
execution model per operation type · Success by Design assessment
Performance
Synchronous
Flowon Logic runs inside the Dataverse plugin pipeline
Subject to D365 plugin timeout governance
Same constraints and resource limits as any native plugin
Async
Flowon Process Orchestrator uses the Dataverse async job queue
Flowon Schedules use the platform job engine
No external async infrastructure required
API Layer
Flowon API Builder runs independently of the D365 plugin pipeline
Scales separately from the D365 environment
Own .NET runtime — assessed independently in Performance review

Testing Strategy Review

Success by Design requires a documented testing strategy covering unit testing, integration testing, user acceptance testing, and performance testing. A key quality indicator is whether testing is repeatable, environment-consistent, and traceable to requirements.

Flowon CI/CD Tools generate test artifacts from FoL definitions and support automated deployment into test environments. Because FoL artifacts are environment-portable with mapping files handling GUID and URL differences between Dev, UAT, and Production the same configuration that passes testing is exactly what gets deployed. There is no manual step that can introduce discrepancy between the tested and deployed state.

Testing Strategy Review
Success by Design testing criteria · Flowon CI/CD approach
Testing
SbD testing criteria
Flowon CI/CD approach
Repeatable test execution
FoL artifacts deployed consistently — same definition every time, every environment
Traceability to requirements
FoL definitions are the requirements and the implementation — no translation gap
Environment consistency
Mapping files resolve GUID and URL differences at deploy time — no manual steps
Automated where possible
CI/CD pipeline compatible with Azure DevOps and GitHub Actions
The same configuration that passes testing is exactly what gets deployed — no manual step can introduce discrepancy.

Cutover and Go-Live Readiness

Success by Design's Cutover review confirms that the deployment process is documented, rehearsable, and low-risk. It looks for automated deployment sequences, rollback plans, and environment parity.

Flowon CI/CD Tools provide a command-line toolkit (Flowon export, Flowon import, Flowon apply-mappings) that makes the deployment sequence scripted, version-controlled, and repeatable. A cutover rehearsal runs the same commands against UAT that will run against Production. Rollback is a re-import of the previous version. There is no manual configuration step that introduces risk between rehearsal and go-live.

Cutover and Go-Live Readiness
scripted · version-controlled · rehearsable deployment sequence
Cutover
$flowon export
packages FoL artifacts from the source environment into a version-controlled bundle
$flowon apply-mappings
transforms GUIDs, connection references, and URLs for the target environment
$flowon import
deploys the transformed bundle to the target D365 environment

Operational Health and Continuous Improvement

Success by Design extends beyond go-live into operational health monitoring, change management, and the ability to evolve the solution as business needs change. It expects that the implementation can be maintained and extended without disproportionate effort.

Flowon's no-code configuration model means that business rule changes, process adjustments, and API updates are made by functional consultants in Flowon's visual designer and promoted through the CI/CD pipeline. Changes go through the same Git-based review and automated deployment process as the original implementation. The operational change cycle is the same as the build cycle no separate maintenance mode, no manual intervention required.

Operational Health — Change Cycle
no-code · Git-backed · same CI/CD pipeline post go-live
Operate
Business requirement changes
A new rule, process adjustment, or API update is identified by the business
Domain expert updates FoL artifact
Change made in Flowon’s visual designer — no developer required, no custom code
Committed to Git → CI/CD pipeline triggers
Same Git-based review and automated pipeline as the original build cycle
Deployed to UAT → validated → promoted to Production
Environment portability via mapping files — identical artefact from UAT to Production
Full audit trail in Git · same process as original build
Every change is version-controlled, traceable, and rollback-capable

Summary: Flowon and Success by Design

Review StageWhat Success by Design AssessesHow Flowon Supports It
Solution BlueprintPlatform-native architecture, upgrade compatibilityManaged solutions, plugin pipeline, Dataverse-only data model
Gap AnalysisRequirements addressed through supported mechanismsNo-code products address logic, Process Orchestrator, and API requirements in-platform
PerformancePlugin governance, async strategy, scalabilityPipeline-native execution, async job queue, independent API runtime
TestingRepeatability, traceability, environment consistencyCI/CD Tools, FoL portability, automated deployment pipeline
CutoverScripted deployment, rollback capability, rehearsabilityCLI toolkit, version-controlled artifacts, identical rehearsal and go-live
OperationsMaintainability, change velocity, audit trailNo-code change cycle, Git history, same CI/CD process post go-live

Why Flowon Is the Right Choice to Extend the Microsoft Ecosystem

Microsoft's ecosystem: Dataverse, Power Platform, Azure AI, Copilot provides the infrastructure, the data platform, the security model, the AI services, and the connectivity that enterprise organisations need. Flowon extends that ecosystem with business rule intelligence, process orchestration, and API capabilities that operate natively within it.

The case for Flowon as the extension layer rests on three concrete attributes:

Native, not integrated. Flowon runs inside the Dataverse runtime, in the same transaction, under the same security model, using the same SDK as the platform itself. Every other tool that reads Dataverse Power BI, Power Apps, Copilot, AI Foundry reads Flowon's data automatically, without any additional integration work.

Aligned with Microsoft's own quality standards. Flowon is architecturally consistent with Success by Design. It uses the extensibility mechanisms Microsoft recommends, avoids the patterns Microsoft flags as risk, and supports the CI/CD and testing disciplines the framework requires. A FastTrack review of a Flowon implementation will find an architecture that follows the rules.

Built for the full lifecycle. Flowon CI/CD Tools, the FoL artifact model, and environment portability mean that what is built, tested, and deployed follows a disciplined, repeatable process from Day 1 through every subsequent change. The investment made in the initial implementation compounds rather than accumulates debt.

Microsoft Ecosystem × Flowon
the platform organisations have invested in · the extension layer built to honour that investment
Microsoft Ecosystem
Flowon extends with
Dynamics 365 + Dataverse
Business rules, Process Orchestrator, and APIs — native, in-transaction, zero-latency
Power Platform
All process data available immediately — no integration, no sync gap
Copilot + MCP
Process intelligence and 40+ Flowon actions available to Copilot natively
Azure AI Foundry
Structured execution data from Logic, Process Orchestrator, and API feeds AI models directly
Success by Design
Architecture aligned at every stage — managed solutions, pipeline-native, CI/CD-ready

Flowon Logic Composer, Flowon Process Orchestrator, and Flowon API Builder are built natively for Dataverse, using Microsoft's own SDK and data platform, aligned with Microsoft's Success by Design framework, and designed to extend the Microsoft ecosystem's capabilities at every layer.