Hi everyone, I have a software engineering background and I’m currently working on data pipelines that integrate with HubSpot — for example, pushing contact or deal data using the official Python SDK. One of the challenges I’m running into i read more
Hi @MvanMaasakkers , Yes, HubSpot offers a standard sandbox account for safe testing without affecting the production data. You can set it u...read more
Prior to today this endpoint worked as expected, but on June 2nd 2PM UTC it started to respond always with the JSON containing no `results` and the same `paging.next.after` and `paging.next.link`. Because of that, the cursor iteration loop becom read more
Hi, This behavior appears to be a recent change or issue with the API. If the paging.next.after value remains constant with no results, it could ind...read more
Hello, We are working with python and HubSpot API, using both the hubspot api library for python and the requests library depending on the endpoint we are using. We have found a roadblock trying to retrieve the marketing emails and tie them read more
Hi @LF_Ruiz Yes, this is possible using HubSpot APIs. You’ll need to combine two APIs to achieve this: Step 1 Use the Email Events API (Lega...read more
Hi all, We’re running into what looks like either a limitation or a silent failure inside HubSpot’s internal Custom Code actions within ticket-based workflows, and I’d like to know if anyone else has encountered this. Setup: Workflow T read more
Thanks for this — that clears things up. We were previously using input.get('subject') and returning data directly in the root return object in...read more
I am trying to figure out how is the url path and scope permissions needed so I can , using python and API (v3 or v4) return the jira item (id and status ) associated with an specific ticket id.
Hi @AndreASantos 1) Fastest route—get the two Jira fields directly from the ticket: GET https://api.hubapi.com/crm/v3/objects/tickets/{TICKET_ID...read more
Hi everyone, I would appreciate it if someone got back to me on the following puzzling query.
I have two pipelines:
Course Interest pipeline which has a value of "default"
Applications pipeline which has a value of "1510593736"
I read more
Hey @HFarhat8 👋 The root issue is related to how the Search API works. This part from the Limitations section is our best clue — “It may tak...read more
Hi! I am trying to get the contacts from a List. The list is a dynamic list (I think). The list URL is like this: https://app.hubspot.com/contacts/ACCOUNT_ID/objectLists/5039/filters I tried using the https://api.hubapi.com/contacts/v1/lis read more
@PMunar - I'm thining that the list API you want is described here:
https://developers.hubspot.com/docs/reference/api/crm/lists#get-%2Fcrm%2Fv3%...read more
Hi, I created a custom object with internal name = "gridly_objects" I read all Hubspot developer docs, and I could successfully make Hubspot API request such as /crm/v3/schemas/{objectTypeId} /crm/v3/schemas/p_{object_name} But when I attemp read more
@JerikaNguyen wrote: Hi, I created a custom object with internal name = "gridly_objects" I read all Hubspot developer docs, and I could successfu...read more
I am trying to retrieve different objects via the HubSpot API in Python. So far, I have retrieved all objects except Goals. I am unsure why, but I keep getting an Authentication error despite having the right key and CRM.Objects.Goals.Read as a read more
Hi again, Jaycee! I've been able to sort it out by not using the HubSpot Python library and just calling an URL endpoint with the API. Thank you ...read more
The Event Types endpoint seems to be non existent in the Python library: AttributeError: 'EventsApi' object has no attribute 'get_types' I can not find any reference to this function in the library. Please either fix the documentation and remov read more
Hi @Bürobert , thanks for your patience as I was checking on this for you! We wanted to let you know that we heard your feedback, and we've made ...read more
Hi everyone. I am trying to filter contact information based on a custom property, which has a Date format (in the UI I see it as a date picker format). Its name is "fecha_inicio_suscripcion". I am running it through the API endpoint: http read more
Date picker type uses Unix Timestamp. For Dec 02 2020 (time set to 00:00:00 GMT+0000), you would use 1606867200 (seconds) or 1606867200000 (milliseco...read more
Hello, I created a private app and I am trying to hit the Leads APIs. But, I am getting the following number API: curl --request GET \ --url ' https://api.hubapi.com/crm/v3/objects/leads?limit=10&archived=false ' \ --header 'authorizati read more
Hi @SSoftware2 ,
If your authentication lacks the permissions for that API endpoint, you will get a 403 Forbidden error. This common issue can...read more