curl --request GET \
--url https://{FUSION HOST}/api/api-key
[
{
"name": "<string>",
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"key": "<string>",
"roles": [
"<string>"
],
"disabled": true
}
]
Deleted keys are filtered
curl --request GET \
--url https://{FUSION HOST}/api/api-key
[
{
"name": "<string>",
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"key": "<string>",
"roles": [
"<string>"
],
"disabled": true
}
]
OK
The response is of type object[]
.
Was this page helpful?