Index
Partially replaces a document in a table
Partially replaces a document with given id in a table Responds with an object of the following format:
{'table':'products','updated':1}
post/{table}/_update/{id}
Path parameters
tablestring required
Name of the percolate table
idinteger required
Id of the document to replace
Request body
Example request
{
"doc": {
"title": "This is some title",
"gid": 100
}
}Response
item updated
Example response
{
"table": "test",
"updated": 29
}