Search documentation
Search pages, API reference sections, and guide headings.
Summary
Automations watch connector paths, trigger prompt presets, and deliver index exports for recurring VideoVector workflows.
Import automation endpoints
| Method | Path | Purpose |
|---|---|---|
GET | /api/v2/indexes/{index_id}/automations/import | Retrieve saved import automation |
PUT | /api/v2/indexes/{index_id}/automations/import | Create or replace import automation |
POST | /api/v2/indexes/{index_id}/automations/import/pause | Pause import automation |
POST | /api/v2/indexes/{index_id}/automations/import/resume | Resume import automation |
Export automation endpoints
| Method | Path | Purpose |
|---|---|---|
GET | /api/v2/indexes/{index_id}/automations/export | Retrieve saved export automation |
PUT | /api/v2/indexes/{index_id}/automations/export | Create or replace export automation |
POST | /api/v2/indexes/{index_id}/automations/export/pause | Pause export automation |
POST | /api/v2/indexes/{index_id}/automations/export/resume | Resume export automation |
Import automation request
{
"enabled": true,
"paused": false,
"connector_id": "conn_archive",
"source_prefix": "incoming/daily/",
"file_pattern": "*.mp4",
"recursive": true,
"debounce_interval": "10m",
"prompt_preset": {
"prompt_id": "prompt_episode_extract"
}
}
Supported public debounce intervals are:
5m10m1h1d
Export automation request
{
"enabled": true,
"paused": false,
"destination_connector_id": "conn_export",
"destination_subpath": "exports/review-team"
}
Operational behavior
enabledcontrols whether the automation is configured for execution.pausedis the public temporary stop control.- Pause and resume preserve the configuration.
Internal automation trigger routes exist in the backend, but they are not part of the public integration surface and are intentionally excluded from this documentation set.
Related workflows
- Build the source and destination boundaries with Connectors.
- Use Import jobs and Exports for one-time operations.
Related documentation
VideoVector exposes a public workflow layer for storage integration and downstream delivery. This page explains connectors, jobs, automations, exports, and event delivery as one model.
This guide covers one-time import jobs and persistent index-level import automations that watch a storage location and trigger processing with a prompt preset.
Use exports to package result data for download or connector delivery, then use export automations when the handoff should persist per index.
