Get your B2B marketplace up and running with Millbuddy in minutes. Follow this step-by-step guide to set up your environment, connect RackBeat, and launch your marketplace.
Active RackBeat ERP account with API access enabled
Node.js v14+ and npm/yarn installed
Millbuddy API key and organization ID
Configure your Millbuddy environment
// Example configuration in your .env file
MILLBUDDY_API_KEY=your_api_key
MILLBUDDY_ORG_ID=your_org_id
MILLBUDDY_ENV=production
Connect your RackBeat ERP system
// Example RackBeat connection setup
const rackbeat = new MillbuddyRackBeat({
apiKey: process.env.RACKBEAT_API_KEY,
warehouseId: 'your_warehouse_id',
syncInterval: '5m'
});
await rackbeat.connect();
Configure your B2B marketplace
// Example product configuration
const product = await millbuddy.products.create({
name: 'Enterprise Widget',
sku: 'WDG-001',
pricing: {
base: 99.99,
bulk: [
{ quantity: 10, price: 89.99 },
{ quantity: 50, price: 79.99 }
]
}
});
Our integration team is here to help you get up and running quickly.
Schedule Integration Call