Hi,
I appear to be having an issue with the Python SDK specifically with endpoint /api/v2/authorization/roles/{roleId}/users.
If I use this endpoint via dev tools then I receive the expected result which can be seen below:
"entities": [
{
"id": "9e97fd15-2cba-gh78-9d60-c96b1aa6b266",
"selfUri": "/api/v2/users/9e97fd15-gh78-4d91-9d60-c96b1aa6b266"
},
{
"id": "661c4d7c-ccb6-lo90-b89c-c878c0e4be77",
"selfUri": "/api/v2/users/661c4d7c-lo90-452d-b89c-c878c0e4be77"
},
however, if I use get_authorization_role_users() via Python SDK then I get an entirely different result which can be seen below:
{'acd_auto_answer': None,
'addresses': None,
'authorization': None,
'biography': None,
'certifications': None,
'chat': None,
'conversation_summary': None,
'department': None,
'division': None,
'email': None,
'employer_info': None,
'geolocation': None,
'groups': None,
'id': '31c0810a-172f-4846-8411-0941de9ba911',
'images': None,
'language_preference': None,
'languages': None,
'last_token_issued': None,
'locations': None,
'manager': None,
'name': None,
'out_of_office': None,
'presence': None,
'primary_contact_info': None,
'profile_skills': None,
'routing_status': None,
'self_uri': '/api/v2/users/31c0810a-172f-4846-8411-0941de9ba911',
'skills': None,
'state': None,
'station': None,
'team': None,
'title': None,
'username': None,
'version': None}],
Is this expected from the Python SDK if so, then I can iterate through the JSON and return the self_uri I suppose.
Thanks in advance