Loading...
Asynchronously called in the CSV Wizard to store the file that the CSV wizard was based on.
Project ID
OK
Whether the operation succeeded
Optional error description (set if 'success' was false)
const response = await fetch('https://studio.edgeimpulse.com/v1/api/{projectId}/csv-wizard/uploaded-file', { method: 'POST', headers: { "Content-Type": "multipart/form-data" }, body: JSON.stringify({ "file": "binary" }), }); const data = await response.json();
{ "success": false, "error": "text" }