client.list_org_roles

Retrieves the names of all users and their permissions roles.

🚧

Warning

Only administrators can use client.list_org_roles() .

client.list_org_roles()
Return TypeDescription
dictA dictionary of users and their roles in the organization.
{
    'members': [
        {
            'id': 1,
            'user': '[email protected]',
            'email': '[email protected]',
            'isLoggedIn': True,
            'firstName': 'Example',
            'lastName': 'Administrator',
            'imageUrl': None,
            'settings': {'notifyNews': True,
                'notifyAccount': True,
                'sliceTutorialCompleted': True},
            'role': 'ADMINISTRATOR'
        },
        {
            'id': 2,
            'user': '[email protected]',
            'email': '[email protected]',
            'isLoggedIn': True,
            'firstName': 'Example',
            'lastName': 'User',
            'imageUrl': None,
            'settings': {'notifyNews': True,
                'notifyAccount': True,
                'sliceTutorialCompleted': True},
            'role': 'MEMBER'
        }
    ],
    'invitations': [
        {
            'id': 3,
            'user': '[email protected]',
            'role': 'MEMBER',
            'invited': True,
            'link': 'http://app.fiddler.ai/signup/vSQWZkt3FP--pgzmuYe_-3-NNVuR58OLZalZOlvR0GY'
        }
    ]
}