Skip to main content
GET
/
api
/
api-key
List API keys
import requests

url = "https://{FUSION HOST}/api/api-key"

response = requests.get(url)

print(response.json())
[
  {
    "name": "<string>",
    "id": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "key": "<string>",
    "roles": [
      "<string>"
    ],
    "disabled": true
  }
]

Response

200 - */*

OK

name
string
id
string
createdAt
string<date-time>
key
string
roles
string[]
disabled
boolean