Loading...
Retrieve all secrets.
Organization 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}/secrets', { method: 'GET', headers: {}, }); const data = await response.json();
{ "success": false, "error": "text", "secrets": [ { "id": 0, "name": "text", "description": "text", "created": "2024-12-03T17:38:06.189Z", "createdByUser": { "id": 0, "name": "text", "username": "text", "photo": "text" } } ] }