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
}Documentation Index
Fetch the complete documentation index at: https://docs.xano.com/llms.txt
Use this file to discover all available pages before exploring further.
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
}