Skip to main content
Get API Key
curl --request GET \
  --url https://api.coralogix.com/mgmt/openapi/latest/aaa/api-keys/v3/{key_id} \
  --header 'Authorization: <api-key>'
{
  "keyInfo": {
    "active": true,
    "hashed": true,
    "id": "<string>",
    "keyPermissions": {
      "permissions": [
        "<string>"
      ],
      "presets": [
        {
          "name": "my_preset",
          "permissions": [
            [
              "read_logs"
            ]
          ]
        }
      ]
    },
    "name": "my_api_key",
    "owner": {
      "organisationId": "<string>"
    },
    "value": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key authentication

Path Parameters

key_id
string
required
Example:

"my_key_id"

Response

This data structure is the response obtained when retrieving an API key.

keyInfo
object
required

This data structure represents the information associated with an API key.