Sign in

Upload CSV Import

documented

Upload a CSV file to import into Watershed (creates an import job).

POST /api/organizations/{org_id}/csv-importCSV Importno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://sandbox.watershedlrs.com/api/organizations/{{$org_id}}/csv-import?template={{$template_name}}&fileSize={{$filesize}}" \
  -X POST \
  -u "{{WATERSHEDLRS_API_KEY}}:{{WATERSHEDLRS_SECRET}}" \
  -H "Accept: application/json" \
  -F "file=@{{$csv_file_path}};type=text/csv" \
  -F "filesize={{$filesize}}"
Upload CSV Import · Watershed · OpenIntegrations