heyloyalty / hl-phpclient
php client for heyloyalty rest api
1.6.3
2019-12-11 07:58 UTC
Requires
- php: >=5.4
- ext-curl: *
Requires (Dev)
- phpunit/phpunit: ~4|~5
- dev-master
- 1.6.3
- 1.6.2
- 1.6.1
- 1.6.0
- 1.5.2
- 1.5.1
- 1.5.0
- 1.4.1
- 1.4.0
- 1.3.5
- 1.3.4
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.0
- 1.0.0
- dev-20230307-Endpoint-productfeed-get-product
- dev-LR-5910-lists-v2-patch
- dev-Fix-index-error-with-webhook-category
- dev-LR-5705-add-custom-fields-fix
- dev-20190410-add-get-counties-data
- dev-AddPatchAndUpsertEndpoint
- dev-Obscure-memberData
- dev-Fix-empty-string-for-json-return
- dev-LR-4092-webhook-add-sent-type
- dev-AddListExamplesThatActuallyRuns
- dev-borch-inc-dandomain-sendfile
- dev-borch-inc-DD-userlogin
- dev-Add-get-paged-members-to-Member-service
- dev-Add-segment-service
- dev-Add-HLShops-class
- dev-Fix-invalid-account-user-routes
- dev-Create-ListSettings-service
- dev-Create-autoresponder-trigger-service
- dev-Add-webhook-endpoints
- dev-Create-syncProductfeed-method
This package is auto-updated.
Last update: 2025-04-09 17:40:28 UTC
README
HL-phpclient
Php client for heyloyalty api.
The client also has methods for using reseller endpoints, how to become a reseller Accounts Account users
This client contains all methods for interacting with Heyloyalty api.
Installation
The recommended way to install HL-phpclient is through Composer
composer require heyloyalty/hl-phpclient
Simple example
Api key and secret are required from your Heyloyalty account
use Phpclient\HLMembers; use Phpclient\HLClient; $client = new HLClient('your-api-key','your-api-secret'); $memberService = new HLMembers($client); $listId = 12; $members = $memberService->getMembers($listId); var_dump($members);
Further documentation
Look at the code examples in the examples folder