Hi
I’ve been searching everywhere for this - I’m trying to run an API call to clear a custom field that has a date in it.
I.e a task has a custom field on it, type: date. And it has a date in it. But I’m wanting to remove this date, so the field is now empty.
I don’t know if I’m doing something obvious wrong. I’ve tried setting the field to NULL, null, “NULL”, “null”, “”, “1970-01-01” but I get various errors, the most often one being:
[400] date_value: DayAndDateTime should have exactly one of: date, date_time
My most recent attempt is
{
"data": {
"custom_fields": {
"CUSTOMFIELDID":
{
"date": "NULL"
}
}
}
}
Can anyone help?