Last updated 9 months ago
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": [ { "id": 0, "hmacKey": "text", "isDevelopmentKey": false, "name": "text", "created": "2025-01-21T00:55:25.017Z" } ] }