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.
Free
Set these inside the intent when you run it.
The ID of the scheduled callback to cancel, returned when it was created.
Confirmation that the scheduled callback was cancelled.
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