Integrations Control Panel
Configure, manage, and monitor all your platform integrations
8
Total Integrations6
Active Integrations1,234
Total Syncs (24h)2
Errors (24h)Integration Platforms & Configuration
WooCommerce Integration Guide
Step 1: Install Plugin
Download and install our WooCommerce integration plugin from your WordPress admin panel.
WordPress Admin β Plugins β Add New β Upload Plugin
Step 2: Generate API Credentials
Create API keys in your WooCommerce store:
- Go to WooCommerce β Settings β Advanced β REST API
- Click "Add Key"
- Set description: "BMS Integration"
- Set permissions: "Read/Write"
- Click "Generate API Key"
Step 3: Configure Integration
Generated Integration Script
// Click "Generate Integration Script" to see the code
Shopify Integration Guide
Step 1: Create Private App
- Go to Shopify Admin β Apps β App and sales channel settings
- Click "Develop apps" β "Create an app"
- Name your app: "BMS Integration"
- Configure Admin API scopes:
- read_products, write_products
- read_orders, write_orders
- read_inventory, write_inventory
- Install the app and get API credentials
Step 2: Configure Integration
Generated Integration Script
// Click "Generate Integration Script" to see the code
Easy Orders Integration Guide
Configure Integration
Generated Integration Script
// Click "Generate Integration Script" to see the code
Custom Integration Guide
Step 1: Get API Credentials
Generate API credentials from Settings β API Keys
API Base URL: https://yourdomain.com/api/v1API Key: [Your API Key]API Secret: [Your API Secret]
Step 2: Configure Custom Integration
Generated Integration Script
// Click "Generate Integration Script" to see the code
API Documentation & Endpoints
| Endpoint | Method | Description | Authentication |
|---|---|---|---|
/api/v1/products |
GET | Retrieve products list | Bearer Token |
/api/v1/products |
POST | Create new product | Bearer Token |
/api/v1/orders |
GET | Retrieve orders list | Bearer Token |
/api/v1/orders |
POST | Create new order | Bearer Token |
/api/v1/inventory |
GET | Get inventory status | Bearer Token |
/api/v1/inventory |
PUT | Update inventory | Bearer Token |
/api/v1/webhooks |
POST | Receive webhook events | Signature Verification |