api: Implement GET /user_groups.

This commit is contained in:
Roman Godov 2018-08-18 22:30:35 +03:00 committed by Eeshan Garg
parent bf752a860c
commit d02dbbcf75

View file

@ -1218,6 +1218,18 @@ class Client(object):
method='GET' method='GET'
) )
def get_user_groups(self):
# type: () -> Dict[str, Any]
'''
Example usage:
>>> client.get_user_groups()
{'result': 'success', 'msg': '', 'user_groups': [{...}, {...}]}
'''
return self.call_endpoint(
url='user_groups',
method='GET',
)
def create_user_group(self, group_data): def create_user_group(self, group_data):
# type: (Dict[str, Any]) -> Dict[str, Any] # type: (Dict[str, Any]) -> Dict[str, Any]
''' '''