Retrieve all API keys created by the authenticated admin. Returns metadata including creation time, last used time, and assigned permissions. The actual key material is not returned.
curl --request GET \
--url https://api.fluxer.app/v1/admin/api-keys \
--header 'Authorization: <api-key>'[
{
"key_id": "<string>",
"name": "<string>",
"created_at": "<string>",
"last_used_at": "<string>",
"expires_at": "<string>",
"created_by_user_id": "<string>",
"acls": [
"<string>"
]
}
]Admin API key: Authorization: Admin <token>. Only valid for /admin/* endpoints.
Success
Unique identifier for the API key
Display name for the API key
ISO 8601 timestamp when the key was created
ISO 8601 timestamp when the key was last used, or null if never used
ISO 8601 timestamp when the key expires, or null if no expiration
User ID of the admin who created this key
List of access control permissions for the key
100curl --request GET \
--url https://api.fluxer.app/v1/admin/api-keys \
--header 'Authorization: <api-key>'[
{
"key_id": "<string>",
"name": "<string>",
"created_at": "<string>",
"last_used_at": "<string>",
"expires_at": "<string>",
"created_by_user_id": "<string>",
"acls": [
"<string>"
]
}
]