Getting Started

Learn the basics and set up your first campaign in minutes

Quick Start

Welcome to BrandPass! Our platform helps brands manage influencer campaigns, track deliverables, and streamline creator relationships all in one place.

5-Minute Setup

  1. Create your account and organization
  2. Set up your first brand
  3. Add creators to your community
  4. Launch your first campaign
  5. Track performance and deliverables

Key Concepts

Organizations & Brands

Organizations represent your company or team. Each organization can have multiple brands, allowing you to manage different product lines or sub-brands independently.

Organization → Brands → Campaigns → Creators

Campaigns

Campaigns are how you organize your influencer marketing efforts. Add creators, set deliverables, track performance, and measure ROI all within a campaign.

Creator Community

Build your creator database by saving profiles from Instagram, TikTok, and YouTube. Track engagement metrics and organize creators for future campaigns.

Authentication

BrandPass uses secure token-based authentication. All API requests must include a valid authentication token in the Authorization header.

Using Your Token

const response = await fetch('/api/user/organization', {
  headers: {
    'Authorization': `Bearer ${token}`
  }
});
const data = await response.json();

Note: Authentication tokens expire periodically. Always use a valid token when making API calls to ensure authentication doesn't fail.

Next Steps