Loading...
Retrieve all API keys. This does not return the full API key, but only a portion (for security purposes).
Organization ID
OK
Whether the operation succeeded
Optional error description (set if 'success' was false)
List of API keys.
const response = await fetch('https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/apikeys', { method: 'GET', headers: {}, }); const data = await response.json();
{ "success": false, "error": "text", "apiKeys": [ { "id": 0, "apiKey": "text", "name": "text", "created": "2024-12-03T16:51:15.130Z", "role": "admin", "isTransformationJobKey": false } ] }