I am trying to configure a connection between hubspot and easybill (billing/invoicing tool) and the custom coded connector is working for all datapoints except for VAT.
I realised I don’t actually know how/where VAT is stored in hubspot because VAT or tax are not listed as a property anywhere I can find.
Has anyone else run into this issue? Have any advice?
Hi, @UserZ Thank you for your question. Let’s invite a few of our community experts to the conversation — hey @Anton, @GiantFocal, @evaldas , have you set this up in any of your recent client work? Thank you for looking! — Jaycee
Hi @UserZ , this confusion is very common, so you’re not alone.
In HubSpot, VAT is not stored as a first-class CRM property on deals or line items. That’s why you can’t find it in the property settings. Taxes live in a slightly different layer depending on how you’re invoicing.
If you’re using line items only (no quotes), HubSpot does not persist VAT as a dedicated field. The tax amount is effectively baked into calculated totals like hs_total_price, but the VAT rate and tax value themselves are not exposed as readable properties via the UI or standard CRM APIs. This is why your connector can’t “see” VAT.
If you’re using Quotes, VAT is stored as part of the quote configuration, not the line item object. Tax details live on the quote object and are calculated at render time, which again makes them awkward to extract for external billing tools (Set up automated tax and tax rates )
That’s why your workaround, adding explicit VAT fields on the company or deal, is actually the most reliable approach in 2025. Many teams do exactly this:
Store VAT rate and tax applicability as explicit custom properties
Let HubSpot calculate display totals for sales
Send clean, explicit tax fields to the invoicing system
If you need tax per line item downstream, the only deterministic option is to model it yourself with custom line item properties and calculate VAT outside HubSpot. HubSpot’s internal tax logic simply isn’t designed to be an external source of truth.
Your instinct was right. It’s not you. It’s just how HubSpot abstracts tax today.