Filecatalyst Workload Automation __hot__ -
| Action | Endpoint | Method | |--------|----------|--------| | Trigger transfer | /api/transfer | POST | | Get transfer status | /api/transfer/id | GET | | List active transfers | /api/transfers | GET | | Create user | /api/users | POST |
fta-cli --log-level DEBUG --log-file /var/log/fc_workload.log --put file.dat filecatalyst workload automation
Since FileCatalyst itself is primarily a high-speed file transfer solution (using UDP acceleration), it does not have a native "Workload Automation" engine built into its core. Instead, automation is achieved through its , REST API , and Hotfolders . automation is achieved through its
headers = "X-API-Key": API_KEY resp = requests.post(f"API_BASE/transfer", json=payload, headers=headers) transfer_id = resp.json()["id"] filecatalyst workload automation
For native workload automation features (dependency management, SLA tracking, visual pipelines), you would typically wrap FileCatalyst commands into a dedicated workload automation platform like , using FileCatalyst as the file movement plugin.