API keys

List API keys

Lists all API keys.

get/api_key

Query parameters

owner_idinteger

Filter API keys by owner ID.

namestring

Filter API keys by name. Supports case-insensitive partial string matches. For example, searching for 'alex' will match names like 'Alex doe', 'alex123', or 'alex-xyz'.

Response

The operation was successful.

Example response

{
  "paging": {
    "limit": 10
  },
  "results": [
    {
      "id": 1234,
      "name": "CI/CD Main",
      "masked_api_key": "AAAA.xxxxxxxxxxxxxxxxxxxxxPTs=",
      "tags": [
        {
          "key": "CI",
          "value": "main"
        }
      ],
      "grants": [
        {
          "nrn": "organization=1:account=1:namespace=1:application=4",
          "role_id": 1855672260,
          "role_slug": "machine:ci"
        }
      ],
      "owner_id": 1595,
      "last_used_at": "2021-01-02T00:00:00Z",
      "created_at": "2021-01-02T00:00:00Z",
      "updated_at": "2021-01-02T00:00:00Z"
    }
  ]
}

Changes