Skip to main content
Get Team Members API Keys
curl --request GET \
  --url https://api.coralogix.com/mgmt/openapi/4/aaa/api-keys/v3 \
  --header 'Authorization: <api-key>'
{
  "keys": [
    {
      "apiKey": {
        "createdAt": "2023-11-07T05:31:56Z",
        "id": "key_abc123",
        "isActive": true,
        "keyName": "my_api_key",
        "lastActivated": "2023-11-07T05:31:56Z",
        "owner": {
          "user": {
            "userEmail": "test@example.com",
            "userId": "user_123"
          }
        }
      },
      "permissions": [
        "logs:read"
      ],
      "presets": [
        {
          "id": 1,
          "name": "my_preset",
          "permissions": [
            "logs:read"
          ]
        }
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.coralogix.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication

Response

This data structure is the response obtained when retrieving team members API keys.

keys
API Key Summary · object[]