Admin overview of ALL keys in the installation (admin only; session only).
GET
/admin/api-keys
const url = 'https://example.com/api/v1/admin/api-keys';const options = {method: 'GET', headers: {cookie: 'dnse_session=<dnse_session>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/admin/api-keys \ --cookie dnse_session=<dnse_session>Authorizations
Abschnitt betitelt „Authorizations“Responses
Abschnitt betitelt „Responses“Every key with resolved project names.
Media typeapplication/json
Array<object>
object
id
string format: uuid
name
string
kind
string
projectId
string format: uuid
projectName
Resolved in the admin overview.
string
role
string
scopes
Array<string>
expiresAt
string format: date-time
lastUsedAt
string format: date-time
secret
Present only in the create response — shown exactly once.
string
Example
[ { "kind": "project", "role": "manager", "scopes": [ "users" ] }]Insufficient role.