Skills/Scheduled Callback/Cancel a callback

Cancel a callback

Free

Cancel a scheduled callback before it fires. Provide the callback ID returned when it was created. If the callback has already fired, cancellation has no effect.

Cost

Free

What it accepts

Set these inside the intent when you run it.

idrequired

The ID of the scheduled callback to cancel, returned when it was created.

What you get back

Confirmation that the scheduled callback was cancelled.

Run it

Run this sub-skill directly: pin it with operation and pass its inputs in the intent. (Omit operation and the Scheduled Callback skill will route from your intent instead.)

curl -X POST "https://skill.askfaro.com/skills/schedule/run" \
  -H "Authorization: Bearer $FARO_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"intent":{"operation":"cancel","id":"cb_abc123xyz"}}'

Example requests

  • Cancel the reminder I scheduled earlier.
  • Stop the callback I just set up.
  • Unschedule callback abc123.