Generate file upload URL
documentedGenerate a presigned URL to upload a file to Wordsmith storage for use in an assistant question.
POST /api/v1/files/upload-urlFilesno implementation yet0 runsNo 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://api.wordsmith.ai/api/v1/files/upload-url" \
-X POST \
-H "Authorization: Bearer {{AUTOMATEDINSIGHTS_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"file_name": "{{$filename}}", "content_type": "{{$content_type}}", "content_length": {{$content_length}}}'