FruxonDocs
ApiApikeys

List all API keys

Returns all API keys for the current organization. Key secrets are masked and only shown once at creation time.

GET
/v1/tenants/{tenant}/apiKeys
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

tenant*string

The tenant identifier

Query Parameters

bucket?string

Filter by origin. ALL (default) returns every key; OWNED returns keys minted by users (USER + CLI); SYSTEM returns auto-minted keys (WEBHOOK, CONNECTOR, ASSET_WEBHOOK).

Value in"UNSPECIFIED" | "ALL" | "OWNED" | "SYSTEM"

Response Body

curl -X GET "https://api.fruxon.com/v1/tenants/string/apiKeys"
[
  {
    "id": "00000000-0000-0000-0000-000000000000",
    "name": "string",
    "keyPrefix": "string",
    "type": "USER",
    "isActive": false,
    "scopes": [
      "string"
    ],
    "createdBy": "string",
    "createdAt": 0,
    "modifiedAt": 0,
    "expiresAt": 0,
    "revokedAt": 0,
    "lastUsedAt": 0,
    "binding": {
      "kind": "string",
      "kindLabel": "string",
      "resourceId": "string",
      "resourceLabel": "string"
    }
  }
]
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}