UB integration helper

1.0.0 2019-11-14 14:23 UTC

This package is auto-updated.

Last update: 2024-10-05 21:39:15 UTC


README

Installation

Using composer:

composer require "urbanbuz-v3/api:dev-master"

Usage

require('vendor/autoload.php');

use UrbanBuz\API\UrbanBuz;


$url = ''; //  Environment URL

$key ='';  //  API Key

$secret='';//  API Secret

  
$ub = new UrbanBuz($url,$key ,$secret);

$customer = $ub->call('POST', 'customer/online/checkin', $headerParams, $urlParams, $postParams);