Your agent can't do anything after the call ends; this fires an HTTP request at a future time to pick the work back up.
Time
Schedule an HTTP callback to fire at a specific time or after a delay, without blocking the current session. Use it to trigger a follow-up action later, like sending a notification, calling an API, or resuming a workflow. Scheduled callbacks can also be cancelled before they fire.
You need an action to happen later without blocking, or longer than a 30 second wait.
Pausing inline right now (use timer), or sending a request immediately.
Each is a sub-skill of Scheduled Callback; the router picks the right one for your request.
information
Skills run through one gateway with your Faro token. Hand it an intent in plain language; Faro routes to the right sub-skill, runs it, and bills per call.
curl -X POST "https://skill.askfaro.com/skills/schedule/run" \
-H "Authorization: Bearer $FARO_TOKEN" \
-H "Content-Type: application/json" \
-d '{"intent":{"prompt":"Remind me to follow up with John tomorrow at 9am by calling this URL."}}'Example requests