Everything you need to build powerful marketing automation workflows
Get up and running in 5 minutes
Comprehensive API documentation
Step-by-step tutorials
Code samples and templates
Welcome to Marketing Arsenal Builder documentation. This guide will help you get started with our platform and make the most of its powerful features.
# Step 1: Install the MAB SDK
npm install @mab/sdk
# Step 2: Initialize your project
mab init
# Step 3: Configure authentication
mab auth login
Creating your first campaign is simple. Follow these steps to send your first automated email campaign:
5 min read
10 min read
7 min read
12 min read
15 min read
8 min read
Detailed documentation covering every feature
RESTful API with complete code examples
Connect with 500+ platforms seamlessly
Enterprise-grade security implementation
import { MABClient } from '@mab/sdk';
const client = new MABClient({
apiKey: process.env.MAB_API_KEY,
workspace: 'your-workspace-id'
});
// Create a new email campaign
const campaign = await client.campaigns.create({
name: 'Welcome Series',
type: 'email',
audience: {
segment: 'new-users',
filters: {
signupDate: { gte: '2024-01-01' }
}
},
content: {
subject: 'Welcome to Marketing Arsenal!',
template: 'welcome-template-01'
},
schedule: {
type: 'trigger',
trigger: 'user.signup'
}
});
console.log('Campaign created:', campaign.id);Cannot find what you are looking for? Our support team is here to help you succeed.