in SupportScripts/Python/ManageGroupMembers/remove_members_from_group.py [0:0]
def getPagedData(access_token, endpoint, data):
headers = buildHeader(access_token)
result = requests.get(endpoint,headers=headers)
result_json = json.loads(result.text, result.encoding)
json_keys = result_json.keys()
if JSON_KEY_DATA in json_keys and len(result_json[JSON_KEY_DATA]):
data.extend(result_json[JSON_KEY_DATA])
if JSON_KEY_PAGING in json_keys and JSON_KEY_NEXT in result_json[JSON_KEY_PAGING]:
next = result_json[JSON_KEY_PAGING][JSON_KEY_NEXT]
if next:
getPagedData(access_token, next, data)
return data