curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/{projectId}/hmackeys \
--header 'x-api-key: <api-key>'{
"success": true,
"hmacKeys": [
{
"id": 123,
"hmacKey": "<string>",
"isDevelopmentKey": true,
"name": "<string>",
"created": "2023-11-07T05:31:56Z",
"createdByUser": {
"id": 123,
"name": "<string>",
"username": "<string>",
"photo": "<string>"
}
}
],
"error": "<string>"
}Retrieve all HMAC keys.
curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/{projectId}/hmackeys \
--header 'x-api-key: <api-key>'{
"success": true,
"hmacKeys": [
{
"id": 123,
"hmacKey": "<string>",
"isDevelopmentKey": true,
"name": "<string>",
"created": "2023-11-07T05:31:56Z",
"createdByUser": {
"id": 123,
"name": "<string>",
"username": "<string>",
"photo": "<string>"
}
}
],
"error": "<string>"
}Project ID
Was this page helpful?