Developer Center

Examples

Collect Files from Many

Collect files from multiple devices through a simple, centralized workflow.

SourceSourceSourceTarget

Web Upload & Download

Add secure file upload and download capabilities to your web applications.

BrowserWeb Application

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