#
Import / Export (Files)
Influtics supports bulk video import via Excel files. Users upload a spreadsheet with video URLs, and the system processes them asynchronously to create video records.
#
Excel Import Flow
- User uploads an Excel file via the frontend
- Frontend sends rows as JSON to
POST /excel/import excel-import-exportworker creates animport_jobsrecord and splits rows into batches of 50- Batches are enqueued to
EXCEL_QUEUE excel-processorworker processes each batch: parses URLs, creates/links video recordsimport_jobsrecord updated with progress (processed/successful/failed counts)
#
Supported Formats
Required column: A column named URL or Link containing video URLs.
Optional columns: Campaign, Budget, Notes, Tags
#
Section Contents
- Excel Import — End-to-end import flow
- Workers — Workers involved
- Queues — Queue message shapes
- API — HTTP endpoints