Updates an existing record in a collection by its id. By default, merges only the supplied fields into the record (patch); pass replace to overwrite the entire record instead.
Free
Set these inside the intent when you run it.
Name of the collection containing the record.
Id of the record to update.
Fields to merge into the existing record.
If true, replaces the entire record instead of merging fields.
The updated record with its current field values.
Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the Tables skill will route from your intent instead.)
curl -X POST "https://skill.askfaro.com/skills/tables/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"operation":"update","collection":"tasks","id":"abc123","patch":"{\"status\": \"completed\"}","replace":true}}'Example requests