PHPackages                             mymediamagnet/followupboss-api-php - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. mymediamagnet/followupboss-api-php

ActiveLibrary[API Development](/categories/api)

mymediamagnet/followupboss-api-php
==================================

PHP Interface for FollowUpBoss.

083PHP

Since Dec 9Pushed 6y agoCompare

[ Source](https://github.com/MyMediaMagnet/followupboss-api-php)[ Packagist](https://packagist.org/packages/mymediamagnet/followupboss-api-php)[ RSS](/packages/mymediamagnet-followupboss-api-php/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependenciesVersions (1)Used By (0)

Follow Up Boss PHP API
======================

[](#follow-up-boss-php-api)

PHP Interface for working with the Follow Up Boss API

How To Use
----------

[](#how-to-use)

First, download the package

`composer require homeup/followupboss-php-api`

Then, add a couple lines to your .env file. If you don't have one, create and gitignore it

```
FUB_KEY=my_fub_key
FUB_SOURCE=website_url_or_name

```

Then you can simply use any of the following commands to send data to FollowUp Boss.

To get lead data from FUB:

```
$people = new HomeUp\FollowUpBoss\People();
$person = $people->find("test@example.com");
```

To send in lead data:

```
$events = new HomeUp\FollowUpBoss\Events();
$events->saveLead([
    'firstName', 'John',
    'lastName' => 'Smith',
    'emails' => [['value' => 'johnsmith@example.com']],
    'phones' => [['value' => '555-555-5555']],
    'tags' => ['Free Market Report']
]);
```

You can also send in the inquiry event (example data: )

```
$events->inquiry(
    ['emails' => [['value' => 'johnsmith@example.com']]], // Lead data
    "The main body of the inquiry goes here",  // Body of inquiry
    "Enter Type of Inquiry", // Example: "Property Inquiry" or "Registration"
    [optional_property_data],
    [optional_property_search_data],
    [optional_campaign_data]
]);
```

You can also send in page and listing views like so (example data: )

```
$events->listingView(
    ['emails' => [['value' => 'johnsmith@example.com']]], // Lead data
    [property_data],
]);

$events->pageView(
    ['emails' => [['value' => 'johnsmith@example.com']]], // Lead data
    "Title of the Page",
    "http://example.com/about", // URL of the page
);
```

You can add notes to leads

```
$notes = new HomeUp\FollowUpBoss\Notes();
$notes->add(id_of_person, "This is the subject of the note", "This is the body of the note");
```

You can assign an action plan to a lead and retrieve a list of all action plans

```
$ap = new HomeUp\FollowUpBoss\ActionPlans();

$plans = $ap->get()->actionPlans;

$ap->assign(id_of_person, $plans[0]->id);
```

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity35

Early-stage or recently created project

 Bus Factor1

Top contributor holds 96.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/92a303d3fa2517fc0ec5cf790760659e39ab718cb3e1dcf042aea9e09dada0df?d=identicon)[DeveloperPlus](/maintainers/DeveloperPlus)

---

Top Contributors

[![MyMediaMagnet](https://avatars.githubusercontent.com/u/957497?v=4)](https://github.com/MyMediaMagnet "MyMediaMagnet (29 commits)")[![homeup](https://avatars.githubusercontent.com/u/29824731?v=4)](https://github.com/homeup "homeup (1 commits)")

### Embed Badge

![Health badge](/badges/mymediamagnet-followupboss-api-php/health.svg)

```
[![Health](https://phpackages.com/badges/mymediamagnet-followupboss-api-php/health.svg)](https://phpackages.com/packages/mymediamagnet-followupboss-api-php)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
