承接 devincrossman/mindbody-php-api 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

devincrossman/mindbody-php-api

最新稳定版本:1.6.1

Composer 安装命令:

composer require devincrossman/mindbody-php-api

包简介

A PHP wrapper for the MINDBODY Online API

README 文档

README

PHP wrapper class for interacting with Mindbody's API via soap. Requires PHP >= 5.3 with SOAP extension.

Install with composer or clone the repository. Include src/MB_API.php or include vendor/autoload.php if using composer.

Update the MB_API.php file with your Mindbody API source credentials or include them as a parameter to the MB_API constructor

$mb = new \DevinCrossman\Mindbody\MB_API(array(
	"SourceName"=>'REPLACE_WITH_YOUR_SOURCENAME', 
	"Password"=>'REPLACE_WITH_YOUR_PASSWORD', 
	"SiteIDs"=>array('REPLACE_WITH_YOUR_SITE_ID')
));

// CheckoutShoppingCart

$checkoutShoppingCartRequest = $mb->CheckoutShoppingCart(array(
	'Test'=>'true',
	'ClientID'=>1234,
	'CartItems'=>array(
		'CartItem'=>array(
			'Quantity'=>1,
			'Item' => new SoapVar(
				array('ID'=>'1357'), 
				SOAP_ENC_ARRAY, 
				'Service', 
				'http://clients.mindbodyonline.com/api/0_5'
			),
			'DiscountAmount' => 0
		)
	),
	'Payments' => array(
		'PaymentInfo' => new SoapVar(
			array(
				'CreditCardNumber'=>'4111111111111111', 
				'ExpYear'=>'2015', 
				'ExpMonth'=>'06', 
				'Amount'=>'130', 
				'BillingAddress'=>'123 Happy Ln', 
				'BillingPostalCode'=>'93405'
			), 
			SOAP_ENC_ARRAY, 
			'CreditCardInfo', 
			'http://clients.mindbodyonline.com/api/0_5'
		)
	)
));

// GetServices

$options = array(
	'LocationID'=>1,
	'HideRelatedPrograms'=>true
);
$servicesData = $mb->GetServices($options);

// FunctionData

$options = array(
	'FunctionName'=>'my_function',
	'FunctionParams'=>array(
		array(
			'ParamName'=>'@startDate',
			'ParamValue'=>'2014-05-01',
			'ParamDataType'=>'datetime'
		),
		array(
			'ParamName'=>'@endDate',
			'ParamValue'=>'2014-05-30',
			'ParamDataType'=>'datetime'
		)
	)
);
$data = $mb->FunctionDataXml($options);

See the examples folder for other examples Read MINDBODY's API Documentation for more parameters.

统计信息

  • 总下载量: 6.62k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 29
  • 点击次数: 1
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 29
  • Watchers: 9
  • Forks: 17
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-01-02