Loading...
Retrieve all HMAC keys.
Project ID
OK
Whether the operation succeeded
Optional error description (set if 'success' was false)
List of HMAC keys
const response = await fetch('https://studio.edgeimpulse.com/v1/api/{projectId}/hmackeys', { method: 'GET', headers: {}, }); const data = await response.json();
{ "success": false, "error": "text", "hmacKeys": [ { "hmacKey": "text", "isDevelopmentKey": false, "name": "text", "created": "2024-11-21T11:11:47.584Z" } ] }