curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/apikeys \
--header 'x-api-key: <api-key>'
{
"success": true,
"error": "<string>",
"apiKeys": [
{
"id": 123,
"apiKey": "<string>",
"name": "<string>",
"created": "2023-11-07T05:31:56Z",
"role": "admin",
"isTransformationJobKey": true
}
]
}
Retrieve all API keys. This does not return the full API key, but only a portion (for security purposes).
curl --request GET \
--url https://studio.edgeimpulse.com/v1/api/organizations/{organizationId}/apikeys \
--header 'x-api-key: <api-key>'
{
"success": true,
"error": "<string>",
"apiKeys": [
{
"id": 123,
"apiKey": "<string>",
"name": "<string>",
"created": "2023-11-07T05:31:56Z",
"role": "admin",
"isTransformationJobKey": true
}
]
}
Organization ID
OK
The response is of type object
.