I am trying to create a report on the recurring billing frequency and would like to have the ‘‘one-time’’ as a filterable value as well. Right now it is still implemented as a (No value) and once a different value (‘‘monthly’’ for example) is selected within the line-item it is not possible to select ‘‘one-time’’ again. Could this value be implemented as an actuall value since we sometimes use ‘‘one-time’’ line items within deals.
This also makes it impossible to change the value via import because “blank” values are ignored during an import.
There’s only the way over the API to set it blank
use postman:
POST https://api.hubapi.com/crm/v3/objects/line_items/batch/update
body in postman is:
{“inputs”:
[
{“id”: “8919483855”, “properties”: {“recurringbillingfrequency”: “”}}
]
}