Platform Overview
This section introduces the core structure and functionality of the BURQ iPaaS platform. It is intended to help you understand how the platform is organized, what key components it includes, and how different parts of the system work together to enable scalable, low-code integrations.
What is BURQ iPaaS?
BURQ is a powerful, low-code/no-code Integration Platform as a Service (iPaaS) designed to help modern enterprises connect and manage their applications, systems, and data effortlessly. Built on a cloud-native architecture, BURQ automates complex operational workflows, minimizes manual tasks, and eliminates data silos.
Whether you’re in retail, logistics, or an omnichannel business, BURQ empowers your team to work smarter and faster by providing core functionalities:
- Low-Code/No-Code Platform: Build and manage integrations without heavy development effort, making it accessible to both technical and non-technical users.
- Unified Data and Workflow Automation: Automate operations across systems to streamline business processes and reduce redundancies.
- Pre-Built Connectors: Access a growing library of ready-to-use connectors for popular platforms like POS, WMS, CRM, ERP, and eCommerce.
- Real-Time Monitoring: Track the health of your integrations, data flow, and errors with an intuitive monitoring dashboard.

Why Choose BURQ?
BURQ is built to eliminate the most common integration hurdles enterprises face today. Instead of relying on tedious manual data entry, brittle custom code, and siloed systems that create inconsistent information, BURQ delivers a unified platform for seamless connectivity. By breaking down data silos, ensuring real-time visibility, and removing error-prone duplication, it empowers businesses to make faster decisions, accelerate time-to-market, and scale without the burden of high-maintenance integrations.
By choosing BURQ, you can:
- Scale Dynamically: A cloud-native design built with Azure Kubernetes Service can handle millions of transactions and massive datasets without compromising performance.
- Accelerate Deployment: Our low-code interface and pre-built connectors can reduce integration time from weeks to hours, allowing your teams to implement complex procedures faster.
- Ensure Security: Based on Microsoft Azure, BURQ offers enterprise-grade security that complies with global standards like GDPR, and ISO 27001.
- Guaranteed Reliability: A fault-tolerant architecture, automated failover, and real-time monitoring ensure continuous operation, backed by SLA-guaranteed uptime.
- Stay Flexible: A modular and extensible architecture allows you to easily adapt to changing business processes and future-proof your integration strategy.
Who uses BURQ?
A diverse range of users across various industries and technical roles can benefit from BURQ:
- SaaS Providers: Embed powerful iPaaS capabilities into your product, giving users control over data connections and freeing your developers to focus on core features
- Enterprise Teams: Automate workflows across platforms like Dynamics 365, Salesforce, or Shopify without writing new code.
- System Integrators: Use BURQ as a flexible tool to connect, monitor, and scale client integrations quickly, reducing delivery time and enhancing reliability.
- Digital Agencies: Reduce reliance on development teams by automating processes like lead syncing or order fulfillment with a low-code interface.
- Business Analysts & Non-Technical Teams: BURQ’s intuitive dashboards and visual tools enable non-technical teams to effectively monitor data flows and establish integrations.
Key Features
The BURQ iPaaS platform includes a comprehensive set of features to support various integration scenarios:
Integration & Connectivity
- Visual flow builder for designing integrations with drag-and-drop components.
- Pre-configured connectors for common platforms such as Salesforce, NetSuite, Shopify, QuickBooks, and Dynamics 365.
- Support for multiple protocols including REST, SOAP, SFTP, EDI, GraphQL, and Webhooks.
Monitoring & Observability
- Real-time dashboards powered by Power BI for system health and transaction insights.
- Debug logs and packet-level tracking for inspecting data as it moves through each component.
- Configurable alerts and error notifications for proactive issue resolution.
Security & Reliability
- Built-in authentication support (API keys, OAuth, certificates).
- Role-based access control and workspace isolation for data governance.
- High availability through fault-tolerant design and automated retry logic.
- SLA-backed uptime, with continuous monitoring and failover mechanisms.
Workspace Management
- Logical segmentation of integrations by workspace, supporting multi-team and multi-project environments.
- Import/export functionality for replicating or backing up flows.
- Versioning and rollback support for controlled updates.
Core Concepts
This section defines the essential terminology and architectural components you’ll interact with daily within the BURQ iPaaS platform. Understanding these concepts will make it easier to design, build, and manage your integrations.
- Workflows: The fundamental building block of an integration. It represents a single, complete business process or data journey.
- Connectors (Apps): Predefined interfaces that allow BURQ iPaaS to communicate with external applications and services, such as Salesforce or a custom REST API.
- Transactions: A single instance of data moving through a workflow. For example, a single order would be one transaction.
- Entities & Data Transformation: An Entity is a specific type of data object (e.g., Product, Customer). Data transformation is the process of mapping and changing data fields from one format to another.
Messaging Architecture
BURQ iPaaS is built on a modular messaging architecture that enables reliable, scalable, and flexible data movement between systems. Each component plays a specific role in ensuring that data is securely transmitted, correctly formatted, and routed to the appropriate destination.
Understanding this architecture helps in designing workflows that are both fault-tolerant and maintainable across different integration scenarios.

Message Construction
At the core of every integration, a message represents a structured data packet carrying information such as customer records, orders, invoices, or inventory updates.
Burq constructs each message using a consistent schema that includes:
- Payload: The actual data being transmitted
- Metadata: Additional context (e.g., timestamps, message IDs, source/destination IDs)
- Headers: Protocol-level or application-level routing information
This standardization ensures interoperability across diverse systems and improves traceability and debugging within workflows.
Channel / Queuing System
Messages are transmitted through a channel-based queuing system, which ensures reliable delivery and decoupling between components.
Key characteristics:
- Asynchronous Processing: Enables workflows to handle data at varying speeds without blocking.
- Retries & Dead Letter Queues: Failed messages can be retried based on configuration or moved to a dead letter queue for manual intervention.
- Throughput Control: Messages can be throttled or rate-limited to avoid overloading downstream systems.
This layer allows Burq to maintain system resilience and smooth performance even under high-volume workloads.
Router
The Router component determines how messages move between workflow steps or systems. It applies configurable routing rules based on message content, metadata, or external conditions.
Routing patterns may include:
- Conditional Logic (e.g., route only orders > $1000 to an approval system)
- Multicast / Broadcast (e.g., send the same message to multiple destinations)
- Fallback Routes (e.g., redirect failed transactions to a backup system)
Routers help enforce data governance and support modular, rule-based integration strategies.
Translation
Translation refers to data transformation performed within the messaging pipeline to ensure compatibility between heterogeneous systems.
This includes:
- Field Mapping: Converting data fields from source formats to destination formats
- Data Type Conversion: Changing formats like date strings to timestamps, or numbers to strings
- Structural Transformation: Flattening nested data or building hierarchical JSON/XML structures as needed
- Standardization: Aligning units, currencies, or encoding schemes across systems
Translations are typically handled through Burq’s transformer components within each workflow and are essential for ensuring successful end-to-end data flow.