Provide search and update objects with path and new value to patch rows matching search criteria.
Required API Scope: Workspace Content: Update
curl --request POST \
--url https://your-xano-instance.xano.io/api:meta/workspace/{workspace_id}/table/{table_id}/content/search/patch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"search": [
{
"name": "test"
}
],
"updates": {
"name": "new name"
}
}
'{
"success": [
"<string>"
],
"success_total": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?
curl --request POST \
--url https://your-xano-instance.xano.io/api:meta/workspace/{workspace_id}/table/{table_id}/content/search/patch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"search": [
{
"name": "test"
}
],
"updates": {
"name": "new name"
}
}
'{
"success": [
"<string>"
],
"success_total": 123
}