Integrations

AURA integrates with your existing tools and systems. Connect ERP, smart home protocols, payment gateways, CRM platforms, and blockchain networks.

Overview #

📊
ERP / 1C

Sync financial data, contracts, and tenant records

🏠
Smart Home

Z-Wave, Zigbee, KNX protocols for building automation

💳
Payment Gateways

Stripe, PayPal, and bank integrations for rent collection

📇
CRM Systems

Salesforce, HubSpot connectors for lead management

🔗
Blockchain

Ethereum/Polygon for RWA tokenization and document verification

ERP / 1C Integration #

AURA provides two-way synchronization with 1C:Enterprise, one of the most widely used ERP systems in the Russian market. The integration ensures your financial data, contracts, and tenant records stay consistent across both platforms in real time.

Configuration

Set up the 1C integration by providing your server endpoint and specifying which modules to sync:

{
  "integration": "1c_enterprise",
  "endpoint": "https://your-1c-server.com/api",
  "sync_interval": "15m",
  "modules": ["finance", "contracts", "tenants"]
}

Synced Data

The following data is synchronized bidirectionally between AURA and 1C:

Smart Home #

AURA connects to IoT devices through industry-standard smart building protocols. Each protocol serves different use cases depending on your building type and device ecosystem.

Supported Protocols

The platform supports five core protocols: Z-Wave, Zigbee, KNX, MQTT, and CoAP.

Protocol Use Case Devices
Z-Wave Access control, lighting Door locks, switches
Zigbee Sensors, metering Temperature, humidity, motion
KNX Building automation HVAC, blinds, lighting
MQTT IoT telemetry Custom sensors, gateways

MQTT Configuration

Configure your MQTT broker connection to start receiving telemetry from IoT devices:

{
  "broker": "mqtt://iot.aura-pm.io:1883",
  "topics": ["buildings/+/sensors/#"],
  "qos": 1
}

Payments #

AURA integrates with major payment processors to automate rent collection and financial reporting. The platform supports Stripe, PayPal, and direct bank transfer methods.

Stripe Integration

Connect your Stripe account to enable automated recurring rent charges, invoice generation, and real-time payment tracking:

{
  "provider": "stripe",
  "secret_key": "${STRIPE_SECRET_KEY}",
  "publishable_key": "pk_live_...",
  "currency": "usd",
  "auto_charge": true,
  "webhook_url": "https://api.aura-pm.io/webhooks/stripe",
  "payment_methods": ["card", "bank_transfer", "sepa_debit"]
}

PayPal Integration

PayPal is supported for tenants who prefer it as a payment method. Configure your PayPal business account credentials in Settings → Integrations → Payments.

Bank Transfers

AURA generates unique payment references for each invoice, enabling automatic reconciliation of incoming bank transfers with outstanding balances.

PCI DSS Compliance

PCI DSS compliant — AURA never stores card numbers. All sensitive payment data is tokenized and handled directly by the payment processor.

CRM #

Sync tenant communications, lead management, and service interactions with your CRM platform. AURA supports native connectors for Salesforce and HubSpot, plus webhook-based integration for custom CRM systems.

Salesforce Connector

The Salesforce integration syncs contacts, leads, and property-related opportunities bidirectionally. New tenants in AURA automatically create contacts in Salesforce, and maintenance requests generate cases in your support pipeline.

HubSpot Connector

Connect HubSpot for marketing automation, lead scoring, and tenant lifecycle tracking. AURA pushes tenant events to HubSpot workflows for automated follow-ups and engagement campaigns.

Webhook Configuration (Custom CRMs)

For CRM platforms without a native connector, use webhook-based integration. AURA sends HTTP POST requests to your endpoint when key events occur:

{
  "webhook_url": "https://your-crm.com/webhooks/aura",
  "secret": "${WEBHOOK_SECRET}",
  "events": [
    "tenant.created",
    "tenant.updated",
    "request.created",
    "request.resolved",
    "payment.received",
    "payment.overdue"
  ],
  "retry_policy": {
    "max_attempts": 5,
    "backoff": "exponential"
  }
}

Blockchain #

AURA leverages blockchain technology for transparent lease contracts, immutable audit trails, and Real World Asset (RWA) tokenization. The platform supports Ethereum and Polygon networks.

RWA Tokenization

Tokenize real estate assets as ERC-20 or ERC-1155 tokens for fractional ownership, secondary market trading, and DeFi collateralization. Token holders receive proportional rental income automatically through smart contract distributions.

Smart Contract Deployment

AURA deploys pre-audited smart contracts for lease management and document verification. Each lease agreement is hashed and anchored on-chain, providing cryptographic proof of contract terms.

{
  "network": "polygon",
  "rpc_url": "https://polygon-rpc.com",
  "chain_id": 137,
  "contracts": {
    "lease_anchor": "0x1234...abcd",
    "rwa_token": "0x5678...efgh",
    "payment_escrow": "0x9abc...ijkl"
  },
  "wallet": {
    "type": "custodial",
    "provider": "fireblocks"
  },
  "gas_strategy": "standard"
}
Warning

Blockchain operations are irreversible. Always test on testnet first.