NetSuite address addressee field set empty at creation

Hi,

Today, in the NetSuite - HubSpot native integration, when HubSpot is sending Company address information to NetSuite, the addressee field is set with the NetSuite Customer technical ID.

This is a default behavior of NetSuite when creating an Company address via API without providing a value for the addressee field.

The issue with that behavior is that when then displaying the Company address in official documents like quotes or invoices, the address containes a technical ID as addressee.

I am proposing that the NetSuite - HubSpot native integration would be updated to set the address as empty or null when creating the initial addresse using API code as follow:

{
“addressBook”: {
“items”: [{
“addressBookAddress”: {
“addressee”: “”,
“city”: “New York”,
“state”: “NY”,
“zip”: “12345”
}
}]
}
}

or

{
“addressBook”: {
“items”: [{
“addressBookAddress”: {
“addressee”: null,
“city”: “New York”,
“state”: “NY”,
“zip”: “12345”
}
}]
}
}

Thank you for taking this in account.