Austin, thanks for the advice. I have a SQL background and we figured out I was attempting to update a view rather than the actual table. It appears with quickbase the field number is typically field 3. So the data array was changed to
{
"to": "bnsjuuhgv",
"data": [
{
"3": {
"value": 44981
},
"656": {
"value": 1234567890
}
}
],
"fieldsToReturn": [
656
]
}
See table name and reference to field number 3. If the field is included, quickbase assumes record is being updated. Otherwise, it will attempt to add the record. In SQL terms it would read "update bnsjuuhgv set field656="1234567890" where field3=44981". I guess my next question would be, how about if I want to update multiple records based on a different condition. Say "update bnsjuuhgv set field656="1234567890" where field17>5". Possible? Anyboddy?
------------------------------
Joe Lugo
------------------------------