M
Marketing ArsenalBuilder
ProductSolutionsFeaturesPricingEnterpriseCompany
M
Marketing ArsenalBuilder

AI-native execution engine that replaces the coordination layer between strategy and deployed content. Brief in. Deployed content out. Nothing in between.

Product

  • Features
  • Integrations
  • Pricing
  • Changelog
  • Security

Company

  • About
  • Careers
  • Blog
  • Press
  • Partners

Resources

  • Documentation
  • API Reference
  • Guides
  • Community
  • Support

Legal

  • Privacy
  • Terms
  • Cookie Policy
  • Licenses

© 2024 Marketing Arsenal Builder. All rights reserved.|Powered by Mosaic Singularity

System StatusSitemap

Documentation

Everything you need to build powerful marketing automation workflows

Quick Start

Get up and running in 5 minutes

API Reference

Comprehensive API documentation

Guides

Step-by-step tutorials

Examples

Code samples and templates

Navigation

Getting Started

Platform Guides

API Reference

Advanced

Getting Started

Welcome to Marketing Arsenal Builder documentation. This guide will help you get started with our platform and make the most of its powerful features.

Prerequisites

  • An active Marketing Arsenal account
  • Basic understanding of marketing automation concepts
  • Access to your CRM or customer data platform
  • API credentials (for integration projects)

Installation Steps

# Step 1: Install the MAB SDK

npm install @mab/sdk

# Step 2: Initialize your project

mab init

# Step 3: Configure authentication

mab auth login

Your First Campaign

Creating your first campaign is simple. Follow these steps to send your first automated email campaign:

  1. Navigate to the Campaigns section in your dashboard
  2. Click "Create New Campaign" and select "Email Campaign"
  3. Choose your target audience using our segmentation tools
  4. Design your email using the drag-and-drop editor
  5. Set up automation triggers and scheduling
  6. Review and launch your campaign

Popular Documentation

Getting Started

Getting Started with Marketing Arsenal

5 min read

Platform Guides

Creating Your First Email Campaign

10 min read

API Reference

API Authentication Guide

7 min read

Integrations

Integrating with Salesforce

12 min read

Advanced

Advanced Segmentation Strategies

15 min read

Platform Guides

Understanding Analytics Metrics

8 min read

Documentation Features

Comprehensive Guides

Detailed documentation covering every feature

API Documentation

RESTful API with complete code examples

Integration Tutorials

Connect with 500+ platforms seamlessly

Security Best Practices

Enterprise-grade security implementation

SDK Code Examples

Create a Campaign

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);

Need More Help?

Cannot find what you are looking for? Our support team is here to help you succeed.