curl --request GET \
--url https://{FUSION HOST}/api/users
[
{
"id": "<string>",
"username": "<string>",
"realmName": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"roleNames": [
"<string>"
],
"timezone": "<string>",
"permissions": [
{
"methods": [
"GET"
],
"path": "<string>",
"params": {}
}
]
}
]
Return the list of users, optionally filtered by name or realm.
curl --request GET \
--url https://{FUSION HOST}/api/users
[
{
"id": "<string>",
"username": "<string>",
"realmName": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"roleNames": [
"<string>"
],
"timezone": "<string>",
"permissions": [
{
"methods": [
"GET"
],
"path": "<string>",
"params": {}
}
]
}
]
OK
The response is of type object[]
.
Was this page helpful?