Skills/Tables/Delete a record

Delete a record

Free

Permanently removes a single record from a collection by its id. The deletion is immediate and cannot be undone.

Cost

Free

What it accepts

Set these inside the intent when you run it.

collectionrequired

Name of the collection containing the record.

idrequired

Id of the record to delete.

What you get back

Confirmation that the record was deleted.

Run it

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

  • Delete record id abc123 from the tasks collection
  • Remove the product with id xyz789
  • Delete this contact record from the contacts collection