Developer Center

Examples

File Transfer from Applications

Execute and automate file transfers between systems within applications.

Instant TransferCollection & DistributionAutomationSynchronization
Transfer Files from Apps

Upload & Download via Web

Implement large-scale file uploads and downloads on the web.

Web ComponentsLarge-scale TransferDedicated ModuleExabyter
Upload & Download on Web

API Quickstart

Your 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