Permanently removes a single record from a collection by its id. The deletion is immediate and cannot be undone.
Free
Set these inside the intent when you run it.
Name of the collection containing the record.
Id of the record to delete.
Confirmation that the record was deleted.
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":"delete","collection":"tasks","id":"abc123"}}'Example requests