Hello,
How can I set a number type property to a blank or null state from the basicapi.update api? It can be set this way using UI but I can’t seem to find a way to do it from the api. A string value can be blanked by sending and empty string but I don’t know how to ‘blank’ number. Sending null does not work.
//This does not work..leaves the value
let properties = {"jobnumber" : null};
let SimplePublicObjectInput = { properties };
//Call hubspot deal propetry update api for job number
let apiResponseU =
await hubspotClient.crm.deals.basicApi.update(dealId,
SimplePublicObjectInput);