Get all API keys for all users
Retrieves the metadata for all of the API keys for all users.
GET /users/auth/keys/_all
curl \
-X GET https://{{hostname}}/api/v1/users/auth/keys/_all
Response examples (200)
{
"keys": [
{
"id": "string",
"user_id": "string",
"organization_id": "string",
"description": "string",
"key": "string",
"creation_date": "2024-05-04T09:42:00+00:00",
"expiration_date": "2024-05-04T09:42:00+00:00"
}
]
}