{{template "base" .}} {{define "content"}} {{$d := .}}

Auto Import

New Schedule

Configure a recurring CSV import source. The app will fetch and import it automatically on a daily schedule.

Active Schedules
{{if $d.Schedules}}
{{range $d.Schedules}}
{{.Label}} {{if .Active}}active{{else}}paused{{end}}
Format: {{.Format}} • Account: {{.AccountID}} {{if .URL}}• {{.URL}}{{end}} {{if not .LastRunAt.IsZero}}• Last run: {{dateShort .LastRunAt}}{{end}}
{{end}}
{{else}}
No import schedules yet. Create one above.
{{end}}
Webhook endpoint

You can also push a CSV file directly without scheduling. Use this endpoint from any automation tool (n8n, cron, etc.):

POST /import/confirm — multipart/form-data with fields: account_id, format, rows (JSON array)
{{end}}