Zum Inhalt springen

API keys of one project (requires manager; session only).

GET
/projects/{projectId}/api-keys
curl --request GET \
--url https://example.com/api/v1/projects/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/api-keys \
--cookie dnse_session=<dnse_session>
projectId
required
string format: uuid

Keys (never secrets).

Media typeapplication/json
Array<object>
object
id
string format: uuid
name
string
kind
string
Allowed values: project admin
projectId
string format: uuid
projectName

Resolved in the admin overview.

string
role
string
Allowed values: manager editor visitor
scopes
Array<string>
Allowed values: users teams projects settings
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"
]
}
]