• Live group demo of Marketing Hub + Data Agent

    Standardize reporting, reduce manual work, and introduce AI without cleanup

    Join us on March 12
  • Ready to build your local HubSpot community?

    HUG leaders host events, spark connections, and create spaces where people learn and grow together.

    Become a HUG Leader

APIs & Integrations

Filter by
  • All labels
  • CMS Content
  • Companies
  • Contacts
  • Deals
  • Developer tools
  • Ecommerce Bridge
  • Email
  • Enterprise 3rd Party Integration
  • Events
  • Forms
  • Free
  • oAuth
  • oAuth
  • PHP
  • Professional
  • Python
  • SDK
  • Starter
  • Timeline and Extensions APIs
  • Webhooks
  • Workflows
  • Zapier
Sort by
Most Recent
  • Most Recent
  • Most Upvoted
State
All
  • All
  • Solved
  • Unsolved
  • No Replies Yet
Solved
FHulleman on February 16, 2026
Hi, I have a very simple Hubspot CRM contacts integration in my PHP Laravel 12 project. I only use the post contact endpoint to create new contacts. And I currently only have a legacy private app in Hubspot > developers which provides me wit read more
1 upvote
2 Replies
Accepted solution
Thought Leader | Platinum Partner
February 25, 2026 07:35
Hi @FHulleman HubSpot’s documentation around legacy versus new Private Apps is not entirely clear, but the recommended approach is to create a ne...read more
Solved
AB- on September 11, 2025
Hello all. We have a regular non-HubSpot web form with a bunch of fields on an external website. On submission, we would like to send some of these fields to our HubSpot account and store them inside HubSpot. Are there specific APIs that read more
1 upvote
5 Replies
Accepted solution
Thought Leader | Platinum Partner
September 17, 2025 07:09
Hi @AB- There are a few ways you can do this - 1. Map a HubSpot form with your form in the backend. 2. Use the HubSpot API to send data to t...read more
Solved
GBakonyi0 on September 03, 2025
I am facing a very weird and edge-case problem. I implemented the HS request verification v3 in PHP, it is working fine until the username or any contact data (firstname, lastname, city, street, etc) contains special characters, specifically from G read more
0 upvote
5 Replies
Accepted solution
Participant
September 05, 2025 05:35
Okay, today, the issue seems to have gone away. I removed the utf8_encode call as well ensured the raw body was used without anything. Now all data ...read more
Solved
SSakac on July 01, 2025
Hi Support, I’m using the CookieYes plugin in WordPress, along with HubSpot and Fluent Forms Pro. I'm passing the hubspotutk cookie to HubSpot through Fluent Forms when a user submits a form, and that part is working well. However, I’m running read more
0 upvote
3 Replies
Accepted solution
Top Contributor | Gold Partner
July 02, 2025 04:08
Hi @SSakac , You can try the following: document.addEventListener('cookieyes_consent_update', function() { // Remove existing HubSpot...read more
Solved
Mrk-1 on June 18, 2025
I am using the hubspot-php api to submit data to an old hubspot form in our system. The form has an email property added and that is the only property defined for that form. The api is submitting a property named signup_source to the form read more
Accepted solution
July 31, 2025 16:23
Hi @Mrk-1 , No worries about the delay: everyone does what they can when they can. 🙂 I'm going to ask you to test one last thing. ...read more
Solved
NVerma7 on June 13, 2025
Hello HubSpot Team, I’m working with Daxko , and we’re currently migrating our HubSpot integration from V1 APIs to V3 to ensure long-term support and compliance. In our current implementation, we rely heavily on the V1 endpoint: GET /contacts/v1/ read more
1 upvote
3 Replies
Accepted solution
Thought Leader | Platinum Partner
June 20, 2025 03:05
Hi @NVerma7 This is the closest api that I found that can solve your problem. On the response body it gives us recordId and membershipTimeSt...read more
Solved
U072319 on April 04, 2025
Hi HubSpot Community, I’m developing a HubSpot app and need to add a Google site verification meta tag dynamically to the <head> section of all pages for user website who install my app. I want this process to be automated so users d read more
Accepted solution
Recognized Expert | Platinum Partner
April 04, 2025 13:41
Hi @U072319 , As far as I know, there currently aren't any options that would allow you to modify the HTML header/footer settings either site-...read more
Solved
mgreenaw on April 04, 2025
$properties = [ 'email', 'firstname', 'lastname', ]; $filter = new Filter([ 'value' => $lastuser->email, 'propertyName' => 'email', 'operator' => 'EQ' ]); $filterGroup = new FilterGroup([ 'filters' => [$ read more
0 upvote
4 Replies
Accepted solution
Top Contributor
April 04, 2025 12:05
I haven't used the PHP SDK but assuming you can probably put var_dump($searchRequest); right before the request to see what data is being sent. I...read more
Solved
TTeks on April 03, 2025
I need V3 API endpoint to fetch all contacts for a given listId. The list can be either Active or Static. I have tried using https://api.hubapi.com/crm/v3/lists/$listId/memberships and https://api.hubapi.com/crm/v3/objects/contacts/batch/read , read more
1 upvote
2 Replies
Accepted solution
Top Contributor | Gold Partner
April 03, 2025 05:02
Hi @TTeks , There is no endpoint that returns all contacts at once (for performance reasons), but you can retrieve the complete list by: ...read more
Solved
keggerdev on April 01, 2025
Hi ! When the blog comment is posted via API, It is auto approved (published) automatically. It should go to moderation first. I set the state as it is defined in the API documentation as "state": "PENDING_AKISMET"
0 upvote
4 Replies
Accepted solution
Top Contributor | Gold Partner
April 01, 2025 15:12
That is just a sample return, not what you want to send for that property state PENDING_MODERATION is tue state you should send. ...read more
DVinh5 on March 31, 2025
i am using php hubspot-api client ver 9.4.0 for my project and used updateDraftTableRow method to update row of table but its always get response 502 Bad Gateway. Mar 30 previous code always run ok, but i faced error start 31 Mar. I saw in incident read more
0 upvote
1 Reply
Community Manager
April 01, 2025 02:57
Hi @DVinh5 and welcome, we are glad to see you here! 🤗 Thanks for reaching out to the HubSpot Community! When updating the table row, do you...read more
Solved
alexdeoliveira on March 26, 2025
Hey folks! I’m having an issue with capturing the hubspotutk cookie and sending it to HubSpot via API. I have a sign-up form in a Laravel app hosted at example.yourdomain.com , and the HubSpot tracking script is being loaded via Google Tag read more
1 upvote
4 Replies
Accepted solution
Recognized Expert | Platinum Partner
March 27, 2025 11:09
Yes, the structure you have looks correct. The question now is whether the issue is with one of the following: - the cookie value being captu...read more
cancel
Showing results for 
Search instead for 
Did you mean: 

Looking to start a conversation or ask a question?

Create a post
Sunny

Sign up for the Developer Newsletter

Fresh content delivered to your inbox every month.