Just want to point out that the endpoint documentation for the PHP client is outdated. In the documentation (https://developers.hubspot.com/docs/api/cms/pages ) it says to use HubSpot\Client\Cms\Pages\SitePages\Model\Page; but it a read more
The api (using the PHP SDK) sends 2 different calls when creating an object (a company, a task, a deal, etc.), which means that I end up with everything twice. $properties = [
"name" => $customer->name,
read more
The problem was that when we created the ‘Discovery’ object in the SDK, we added a Guzzle client, which was necessary in an older version of the API ...read more
I've to attach task with my custom object. I'm using below code as defined in docs. But I can't able to create it and my object name is 'test'. I've created Association class in PHP:
Association::create($from, $to, $type, $fromObjectType, $toObjec read more
Hi everyone, I hope you are doing well. We need assistance with an issue that has come up after we transitioned from using Hapikey (v2 version) to a Private App (v3 version) for our API calls. Since this change, we've had trouble tracking Google a read more
I am using the HubSpot Batch API to update contact properties with a batch size of 50 contacts. However, I've encountered some strange behavior: some contact properties are getting updated as expected, while others are not. I understand that read more
Hi @FarioConsulting , I’ve checked the system, and there are no workflows automatically updating the properties in question. However, some workflow...read more
Hi all. I'm trying to create a product in HubSpot via the API but I'm running into an error that I can't make sense of. I'm using PHP and cURL and my payload for this test product is below: {
"properties":
{
"name": "8' Bar Foot Rai read more
Hi @JNichel ,
I think the issue is that you are calling the wrong endpoint, you reference "/crm/v3/objects/contacts/" when infact it should be...read more
Hello, I'm using the hubspot-api-php package to interact with HubSpot in the Laravel framework. However, I can't seem to find the Workflow API. Can anyone suggest how to perform operations with workflows similar to how I interact with HubSpot obje read more
Hi everybody!: We are traying to insert, update or upsert objects using batch process, and when we use a null value in a object property, endpoints return "error 500", why is this happening? Individual insert or update methods have read more
Hi, as the title says, I'm trying to associate a contact with a deal when the deal already exists. I've spent hours on the forums and can't find one that helps me, mainly because all the links to HubSpot docs on associations are 404'ing. Like, if read more
@JNichel - I'm suspecting that the PATCH Deal API call you are making:
https://api.hubapi.com/crm/v3/objects/deals/{dealId }
does not offer...read more
Hi everyone, I hope you are doing well. We need assistance with an issue that has come up after we transitioned from using Hapikey (v2 version) to a Private App (v3 version) for our API calls. Since this change, we've had trouble tracking Google read more
Hi @SKundu6
What I understand from your code is that you are storing the contact source in the contact property, and while creating the deal, yo...read more
Hi, We have 2 account on hubspot : - testing account - production account When we try from our platform to create a new company on the Hubspot testing account using api calls with the email that already belong to existing company we don't have read more
Hey @DSubashev is the email field in company a custom property? I've never seen email used on the company level. It's usually used on the contact l...read more
Hey everyone, I have a Laravel application and am using the "hubspot/api-client": "^8.0". When I try to call $outcomes = $this -> client ()-> crm ()-> properties ()-> coreApi ()-> getByName ( 'call' , 'hs_call_dispositio read more
From this article*, it looks like this is a bug in the Hubspot API... the workaround suggested, unfortunately, does not fix it for me 😞 * https:...read more