File Transfer from Applications
Execute and automate file transfers between systems within applications.
Transfer Files from AppsExecute and automate file transfers between systems within applications.
Transfer Files from AppsImplement large-scale file uploads and downloads on the web.
Upload & Download on WebMigrate FTP, SFTP, SCP, and rsync scripts to INNORIX.
Migrate Commands & ScriptsYour First File Transfer
#!/usr/bin/env bash
# 1. Authenticate — log in and obtain an access token (requires jq)
BASE_URL="https://app.innorix.com"
WORKSPACE_ID="<WORKSPACE_ID>"
# Log in to obtain a token
ACCESS_TOKEN=$(curl -s -X POST "$BASE_URL/api/auth/login" \
-H "Content-Type: application/json" \
-d '{"email":"<YOUR_EMAIL>","password":"<YOUR_PASSWORD>"}' \
| jq -r '.data.user.accessToken')
# Build the auth header (reuse "${AUTH[@]}" in later requests)
AUTH=(-H "Authorization: Bearer $ACCESS_TOKEN" -H "x-workspace-id: $WORKSPACE_ID")First transfer example with required fields only
View Full Code