device.users.list

Operation: GET /dataservice/device/users/list

Get all users from device

def get_all_device_users(device_id: str) -> List[Any]: ...

Example:

from catalyswan.core import create_client

url = "example.com"
username = "admin"
password = "password123"

with create_client(
    url=url, username=username, password=password
) as client:
    client.device.users.list.get_all_device_users()