Skip to main content
GET
/
2
/
auth
List Authorizations V2
curl --request GET \
  --url https://api.honeycomb.io/2/auth
{
  "data": {
    "id": "hcxik_12345678901234567890123456",
    "type": "api-keys",
    "attributes": {
      "name": "mgmt write key",
      "key_type": "management",
      "disabled": false,
      "scopes": [
        "api-keys:write"
      ],
      "timestamps": {
        "created": "2022-09-22T17:32:11Z",
        "updated": "2022-10-31T15:08:11Z"
      }
    },
    "relationships": {
      "team": {
        "data": {
          "id": "hxctm_12345678901234567890123456",
          "type": "teams"
        }
      }
    }
  },
  "included": [
    {
      "id": "hcxtm_12345678901234567890123456",
      "type": "teams",
      "attributes": {
        "name": "My Team",
        "slug": "my-team"
      }
    }
  ]
}

Response

Success

data
object
required
included
object[]
Example:
[
{
"id": "hcxtm_12345678901234567890123456",
"type": "teams",
"attributes": { "name": "My Team", "slug": "my-team" }
}
]