Nov 29, 2016 11:02 AM
I’d like to “clear” a specific Contact’s property value. In this instance, the property type is a DatePicker.
I am using the url POST /contacts/v1/contact/createOrUpdate
to update other properties - can I clear a property value in the request? What value would I need to send up with the property to clear this field?
Nov 29, 2016 11:25 AM
Thanks! Makes sense.
Nov 29, 2016 11:09 AM
@kevinmannix You can just use an empty string in your request. Here is a copy of the body I used.
{
"properties": [
{
"property": "firstname",
"value": ""
}
]
}
Here is the history as proof of the change