Hello, I'm building a small app to integrate to new orders API, I managed to create a deal then associate it to the order and also add line items. My main issue is I can't find anyway to fill in the fields for 'Order Total' like subtotal price, dis read more
Hey, @okasem 👋 Are you looking to have these values updated as if they are calculated properties based on the associations? Or do you just wan...read more
I am having trouble creating a quote. A lot of the information I pass is not being inserted into the entity. This is the code quote_url = " https://api.hubapi.com/crm/v3/objects/quotes " quote_payload = { "properties": { "hs_title": f"Contr read more
Hey @IAlbanese 👋 Thanks for providing your code example and screenshots. Have you tried doing this in one call instead of making calls to multip...read more
Hey Alexis I want the most recent engagements which are associated with a particular deal id. I have attached one image in previous message with the api. Please check. I don't want the one which gives me engagements for all deals and all compani read more
Hey, @SMohanty9 👋 This looks like a reply to a support ticket. Did you mean to post it here so that our community members can give you feedbac...read more
Hello everyone I am using Hubspot APIs to intergrate it with our internal ERP and I am facing an issue related to product updates. Let me explain I have a transaction (for instance with id 28730033375) Using the API GET https://api.hubapi.com/cr read more
Hey, @PBREC 👋 Welcome to the community! We're so glad to have you here. Great question. You'll need to make a PATCH request to the Line Items en...read more
I know I am using an old version of the PHP API, but I cannot afford the time at the moment or errors it may cause to upgrade to the newer versions. I have had no issues creating deals in the past, using the following code: $result = $ read more
When fetching an object like deals via a GET, there are multiple "created"-type fields in the response. They are all hubspot-defined, but they often do not match. Take the below real request and response. GET https://api.hubapi.com/crm/v3/objects read more
Thanks for clarifying @Hogan
I can understand the "hs_createdate" property being updated in the case of a "MERGE_OBJECTS" operation (i.e. it ...read more
Hey, We're going to create a private app, and We want to see how much revenue we are doing with a certain customer. And track this business per month, quarter, year and so on. So one of the ideas were creating a deal with help of private app, read more
I'm trying to get the latest dealstage property of a deal in a webhook. So i can compare the previous value with the new value received in the webhook. I do this by querying the current const properties = ['dealstage'];
client.crm.dea read more
Hello! @Jdb8 , Here's what I do to get the previous dealstage. Since HubSpot's propertiesWithHistory already returns the sorted results, we ca...read more
Hello Fellow members, I am trying to develop a UI extension public app and when I try to do a hs upload I get the following error. Can anyone guide me as to how to overcome this problem. I am unsure how to get/enable the permission for REACT_EXT read more
Did you manage to resolve this? I have the same error at the minute - Couldn't create a React extension with your file `/app/extensions/example-ca...read more
Hello all-
Has anyone seen a strange rounding issue when posting values to "/crm/v3/objects/line_items/batch/update"?
I have an instance where I am sending a value to two decimal places, but receiving a 400 error that the value is invali read more
Hey @DaveLinderman 👋 Does the same or similar error happen when you remove the negative value and instead send it as “0.09” for “discount”?
...read more
Hello! I’m encountering an issue while trying to export orders from Younium to HubSpot. The API call fails with the following error message: {"status":"error","message":"The scope needed for this API call isn't available fo read more
I am working on a HubSpot website project. I am trying to create a module that displays documents for our individual contacts that login to our site. I created a custom object that is associated to a deal. So my current code is pulling all deals th read more
@SConner11 crm_associations can only be called up to 10 times so if your deal for loop is running over more than 10 items crm_associations will ...read more