Last updated 7 months ago
Get all data exports for an organization.
Organization ID
OK
Whether the operation succeeded
Optional error description (set if 'success' was false)
List of organization data exports.
const response = await fetch('https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/exports', { method: 'GET', headers: {}, }); const data = await response.json();
{ "success": false, "error": "text", "exports": [ { "created": "2024-11-21T08:45:16.333Z", "createdByUser": { "name": "text", "username": "text", "photo": "text" }, "jobFinished": false, "jobFinishedSuccessful": false, "description": "text", "expirationDate": "2024-11-21T08:45:16.333Z", "downloadUrl": "text" } ] }