Sign in

Upload file to record

documented

Upload and attach a file to a record. Evidence: file upload endpoint referenced by integrations. Source: turn13search4.

POST /openapi/views/{view_id}/records/{record_id}/filesViewsno 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://go.trackvia.com/openapi/views/{{$view_id}}/records/{{$record_id}}/files?user_key={{TRACKVIA_API_KEY}}" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"filename": "{{$filename}}", "description": "{{$description}}", "content_type": "{{$content_type}}", "base64_data": "{{$base64data}}"}'