PHP HubSpot API v3 SDK(Client) files
composer require hubspot/api-client
The current package requirements are:
PHP >= 7.4
Please, take a look at our Sample apps
$hubspot = \HubSpot\Factory::createWithAccessToken('your-access-token');
You'll need to create a private app to get your access token or you can obtain OAuth2 access token.
$hubspot = \HubSpot\Factory::createWithDeveloperApiKey('your-developer-apikey');
$client = new \GuzzleHttp\Client([...]);
$hubspot = \HubSpot\Factory::createWithAccessToken('your-access-token', $client);
$config = new \GuzzleHttp\Client();
$config->setBasePath('*');
$config->setAccessToken('*');
$config->setDeveloperApiKey('*');
$hubspot = \HubSpot\Factory::create(null, $config);
It provides an ability to turn on retry for failed requests with statuses 429 or 500. Please note that Apps using OAuth are only subject to a limit of 100 requests every 10 seconds.
$handlerStack = \GuzzleHttp\HandlerStack::create();
$handlerStack->push(
\HubSpot\RetryMiddlewareFactory::createRateLimitMiddleware(
\HubSpot\Delay::getConstantDelayFunction()
)
);
$handlerStack->push(
\HubSpot\RetryMiddlewareFactory::createInternalErrorsMiddleware(
\HubSpot\Delay::getExponentialDelayFunction(2)
)
);
$client = new \GuzzleHttp\Client(['handler' => $handlerStack]);
$hubspot = \HubSpot\Factory::createWithAccessToken('your-access-token', $client);
$response = $hubspot->crm()->contacts()->basicApi()->getPage();
$contact = $hubSpot->crm()->contacts()->basicApi()->getById('[email protected]', null, null, null, false, 'email');
$filter = new \HubSpot\Client\Crm\Contacts\Model\Filter();
$filter
->setOperator('EQ')
->setPropertyName('email')
->setValue($search);
$filterGroup = new \HubSpot\Client\Crm\Contacts\Model\FilterGroup();
$filterGroup->setFilters([$filter]);
$searchRequest = new \HubSpot\Client\Crm\Contacts\Model\PublicObjectSearchRequest();
$searchRequest->setFilterGroups([$filterGroup]);
// Get specific properties
$searchRequest->setProperties(['firstname', 'lastname', 'date_of_birth', 'email']);
// @var CollectionResponseWithTotalSimplePublicObject $contactsPage
$contactsPage = $hubspot->crm()->contacts()->searchApi()->doSearch($searchRequest);
$contactInput = new \HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectInput();
$contactInput->setProperties([
'email' => '[email protected]'
]);
$contact = $hubspot->crm()->contacts()->basicApi()->create($contactInput);
$newProperties = new \HubSpot\Client\Crm\Contacts\Model\SimplePublicObjectInput();
$newProperties->setProperties([
'email' => '[email protected]'
]);
$hubspot->crm()->contacts()->basicApi()->update($contactId, $newProperties);
$hubspot->crm()->contacts()->basicApi()->archive($contactId);
$hubspot->crm()->objects()->basicApi()->getPage(HubSpot\Crm\ObjectType::CONTACTS)
$file = new \SplFileObject('file path');
$response = $hubspot->files()->filesApi()->upload($file, null, '/', null, null, json_encode([
'access' => 'PRIVATE',
'ttl' => 'P2W',
'overwrite' => false,
'duplicateValidationStrategy' => 'NONE',
'duplicateValidationScope' => 'EXACT_FOLDER'
]) );
It is possible to access the hubspot request method directly, it could be handy if client doesn't have implementation for some endpoint yet. Exposed request method benefits by having all configured client params.
$response = $hubspot->apiRequest([
'method' => 'PUT',
'path' => '/some/api/not/wrapped/yet',
'body' => ['key' => 'value'],
]);
[
'method' => string, // Http method (e.g.: GET, POST, etc). Default value GET
'path' => string, // URL path (e.g.: '/crm/v3/objects/contacts'). Optional
'headers' => array, // Http headers. Optional.
'body' => mixed, // Request body (if defaultJson set body will be transforted to json string).Optional.
'authType' => enum(none, accessToken, hapikey, developerApiKey), // Auth type. if it isn't set it will use accessToken or hapikey. Default value is non empty auth type.
'baseUrl' => string, // Base URL. Default value 'https://api.hubapi.com'.
'qs' => array, // Query parameters. Optional.
'defaultJson' => bool, // Default Json. if it is set to true it add to headers [ 'Content-Type' => 'application/json', 'Accept' => 'application/json, */*;q=0.8',]
// and transfort body to json string. Default value true
];
$response = $hubspot->apiRequest([
'path' => '/crm/v3/objects/contacts',
]);
vendor/bin/phpspec run
vendor/bin/phpunit ./tests