This method will update a single item or multiple items in a set.
At least 1 parameter is requied in the URL of this request otherwise no items will be updated.
{
"first_name": "New first name"
}
[
{
"message": "Updated 1 item out of 500 scanned items."
}
]
You can update multiple fields for an item in a single request. You can also use this method to add new fields to a set.
{
"first_name": "New first name",
"some_new_field": "Something here"
}
[
{
"message": "Updated 1 item out of 500 scanned items."
}
]
You can tell NotoDB to update items based on query parameters. Example:
{
"attended_event": true
}
[
{
"message": "Updated 10 items out of 500 scanned items."
}
]
Remove fields from an item by setting the values to empty. Example:
{
"first_name": ""
}
[
{
"message": "Updated 1 item out of 500 scanned items."
}
]
Next articleDeleting items