Last updated 8 months ago
Get a data export for an organization.
Organization ID
Export ID
OK
Whether the operation succeeded
Optional error description (set if 'success' was false)
const response = await fetch('https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/exports/{exportId}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "success": false, "error": "text", "export": { "id": 0, "created": "2024-12-22T05:34:42.941Z", "createdByUser": { "id": 0, "name": "text", "username": "text", "photo": "text" }, "jobId": 0, "jobFinished": false, "jobFinishedSuccessful": false, "description": "text", "expirationDate": "2024-12-22T05:34:42.941Z", "downloadUrl": "text" } }