GET
/
api
/
organizations
/
{organizationId}
/
apikeys
Get API keys
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
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
integer
required

Organization ID

Response

200 - application/json

OK

The response is of type object.