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 1mo 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 32% 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

[stripe/stripe-php

Stripe PHP Library

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

A PHP wrapper for Twilio's API

1.6k92.9M271](/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)
