<?php
include 'vendor/autoload.php';
$version = '2021-04-15';
$access_token = '';
$ghl = \MusheAbdulHakim\GoHighLevel\GoHighLevel::client($access_token, $version);
$queryParams = [];
$appLocation = $ghl->businesses()->update('businessId',$queryParams);
$businessId = '';
$ghl->businesses()->delete($businessId);
$businessId = '';
$ghl->businesses()->get($businessId);
$locationId = '';
$getBusinessByLocation = $ghl->businesses()->getByLocation($locationId);
$name = 'business name';
$locationId = '';
$business = $ghl->businesses()->create($name, $locationId, [
// other attributes
]);
MusheAbdulHakim\GoHighLevel\ValueObjects\Transporter\Response {#36 ▼
-data: array:3 [▼
"success" => true
"businesses" => []
"traceId" => "xxxxxxxxxxxxx"
]
}