PHPackages                             wmds/mindbodyonline-api-bundle - 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. wmds/mindbodyonline-api-bundle

ActiveSymfony-bundle[API Development](/categories/api)

wmds/mindbodyonline-api-bundle
==============================

Integrates MindBodyOnline.com API with Symfony 2

46.2k2[2 issues](https://github.com/wmds/MindBodyAPIBundle/issues)PHP

Since Oct 25Pushed 12y ago2 watchersCompare

[ Source](https://github.com/wmds/MindBodyAPIBundle)[ Packagist](https://packagist.org/packages/wmds/mindbodyonline-api-bundle)[ RSS](/packages/wmds-mindbodyonline-api-bundle/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependenciesVersions (1)Used By (0)

MindBodyAPIBundle
=================

[](#mindbodyapibundle)

Integrates MindBodyOnline.com API with Symfony 2

**1. Installing the bundle**

```
php composer.phar require wmds/mindbodyonline-api-bundle dev-master

```

Add the bundle to your AppKernel.php file:

```
// app/AppKernel.php
public function registerBundles()
{
    return array(
        // ...
        new Wmds\MindBodyAPIBundle\WmdsMindBodyAPIBundle(),
        // ...
    );
}

```

Add config data to your app/config/config.yml file :

```
# app/config/config.yml
wmds_mind_body_api:
    api_user: YourSourceName                    # (Required)
    api_key:  YourPassword                      # (Required)
    site_ids:  [ 100 ]                          # (Required) if not set, default to -99 (sandbox)
    sandbox:  true                              # (Optional) default: true
    debug:    false                             # (Optional) default: false
    xml: 'Full'                                 # (Optional) default: Full, possible: Bare, Basic, Full

```

**2. How to use it**

This bundle is a service, to use it:

```
// Anywhere in your controller
$mbapi = $this->get('wmds_mind_body_api');

```

MindBodyOnline.com has a list of available services that you can check on To use an API service:

```
// Get the SaleService
$sale = $mbapi->getService('sale');

//Get the AppointmentService
$appointment = $mbapi->getService('AppoinTment'); // string passed is case insensitive

```

this will automatically set the $sale object, initiate the SOAP object and passes the wsdl url.

To make a request, call the setParam() function to add all the parameters that you need and then execute():

```
$products =  $sale->setAction('GetProducts')
                ->setParam('SellOnline',true)
                ->execute();

```

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance10

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 90.9% 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/e550742ed5d238de64969838cabc7f5e7fc26f9e1bbef42b364107bdd758f7ea?d=identicon)[wmds](/maintainers/wmds)

---

Top Contributors

[![wmds](https://avatars.githubusercontent.com/u/3983377?v=4)](https://github.com/wmds "wmds (20 commits)")[![joshuataylor](https://avatars.githubusercontent.com/u/225131?v=4)](https://github.com/joshuataylor "joshuataylor (1 commits)")[![Plopix](https://avatars.githubusercontent.com/u/313532?v=4)](https://github.com/Plopix "Plopix (1 commits)")

### Embed Badge

![Health badge](/badges/wmds-mindbodyonline-api-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/wmds-mindbodyonline-api-bundle/health.svg)](https://phpackages.com/packages/wmds-mindbodyonline-api-bundle)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35816.3M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172437.8k11](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93452.6k6](/packages/botman-driver-telegram)

PHPackages © 2026

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