cURL
curl --request POST \ --url https://flowra.dev/api/v1/file/upload/single/{fileType} \ --header 'Content-Type: multipart/form-data' \ --header 'x-api-key: <api-key>' \ --form file='@example-file'
Upload a file (image or document) via multipart form. Pass the file type in the URL path. Returns the file ID to use in other APIs (e.g. knowledge, workflows).
Project API key. Create and manage keys in the dashboard under Project → API Keys. Send as header: x-api-key:
File uploaded; returns file ID
Was this page helpful?