Skip to content
Get started

Destinations

Configure where your AI task results are delivered

Destinations define where task results are delivered after execution. 0ct supports email delivery for formatted reports and results.

When a task completes, 0ct can automatically deliver results to configured destinations. Currently, email delivery is fully supported, with SMS and webhook destinations on the roadmap.

Email destinations deliver formatted results directly to inboxes.

Via Dashboard:

  1. Navigate to Tasks in the sidebar
  2. Edit a task or create a new one
  3. In the Delivery section, add email recipients
  4. Configure subject line and format
  5. Click Save
OptionDescriptionDefault
RecipientsEmail addresses to receive resultsRequired
SubjectEmail subject lineTask name
FormatHTML or plain textHTML

When creating a task via the dashboard, you can configure email delivery in the task settings. Results are sent immediately when the task completes.

Webhook destinations will send JSON payloads to any HTTP endpoint, enabling integration with:

  • Slack
  • Discord
  • Zapier
  • Custom applications
{
"event": "task.completed",
"timestamp": "2026-02-03T15:30:00Z",
"task": {
"id": "task_abc123",
"name": "Daily Report"
},
"run": {
"status": "completed",
"output": "Today's key metrics show..."
}
}

SMS destinations will send concise notifications via text message for time-sensitive alerts.

  • Use email for detailed, formatted content
  • Include clear subject lines
  • Add multiple recipients for team visibility
  • Perfect for system integrations
  • Trigger downstream automation
  • Connect to any HTTP endpoint
  • Reserve for urgent, time-sensitive alerts
  • Keep messages concise
  • Use for status updates, not full reports