I have a feature where I update the values on Quickbase for our system. I am able to update most fields, checkboxes, text inputs and numerical data..
using this kind of query
{
"to":"appid",
"data": [
{
"3": { "value": 1 },
"308": { "value": "2021-5-17" },
"104": { "value": true }
}
]
}
but when I try updating a value on a date field.. I get a '207 Multi-Status' response from it. any idea how to set date values?
I tried different string formats. Quickbase formulas/functions like 'today()' Thanks!