v1

latestSwagger 2.0MIT2026-07-1310778293.3 KB
Api Keys

Create API key

Creation of a new API key.

post/api/v1/apikeys

Request body

labelstring required
organizationIdstring required
secretstring required

Example request

{
  "organizationId": "de.acme"
}

Response

OK

activeboolean required

Whether this API key is active

createdAtinteger required

The UTC unix timestamp of when this api key has been created

createdBystring required
keystring required

The api key identifier

labelstring required

The label / name of the api key

organizationIdstring required

The organization namespace this api key belongs to

Example response

{
  "active": true,
  "createdAt": 1517232722,
  "createdBy": "user123",
  "key": "39978f49-6ff1-4147-bf0f-9910185084b7",
  "label": "My Api Key",
  "organizationId": "de.acme"
}