List organization users
Start from the script setup block, then add the snippet code below.
# ... script setup ...
users = api_get( f"/v1/organization/{ORGANIZATION_ID}/users", params={"page": "1", "limit": "50", "sortBy": "email", "sortDir": "ASC"},)print(json.dumps(users, indent=2))