thiagorizzo / gohighlevel-php
php sdk for gohighlevel api
Fund package maintenance!
musheabdulhakim
Patreon
paystack.com/pay/musheabdulhakim
Requires
- php: ^7.4
- ext-json: *
- php-http/discovery: ^1.20
- php-http/multipart-stream-builder: ^1.4.2
- psr/http-client: ^1.0
- psr/http-client-implementation: *
- psr/http-factory-implementation: *
- psr/http-message: ^1.1
Requires (Dev)
- guzzlehttp/guzzle: ^7.8
- guzzlehttp/psr7: ^2.7
- phpstan/phpstan: *
- symfony/var-dumper: ^5.4.45
This package is auto-updated.
Last update: 2025-03-29 00:56:47 UTC
README

This package provides a wonderful PHP API client that allows you to interact with GoHighLevel Api
First, install via Composer
composer require musheabdulhakim/gohighlevel-php
๐งน Keep a modern codebase with Pint:
composer lint
โ Run unit tests using PEST
composer test:unit
๐ Run the entire test suite:
composer test
Usage
use \GoHighLevelSDK\GoHighLevel; //Initialize the client $client = GoHighLevel::client($access_token, '2021-07-28'); //Or $clientInit = GoHighLevel::init($access_token)->withVersion('2021-07-28'); // Get User by Location $user = $client->User()->byLocation($locationId) //Get locations by stripeId with companyId $data = $clientInit ->withHttpHeader('channel','OAUTH') ->withHttpHeader('source','INTEGRATION') ->make()->Saas()->get([ 'companyId' => '', 'subscriptionId' => '', 'customerId' => '' ]);