Generate a list of groups. Include any child groups as nested arrays of child groups
This outputs a list of each group and their child groups nested within each object.
Path parameters
- 
    
  
A comma list of the limit options. If supplied must have the same comma options as the limitvalues parameter. group_type: The ID of the group type parent: Integer. The ID of the parent group to start the search from. action: Either Y or N visible: Either Y or N content: Either Y or N name: The name (case insentive) for a specific group
Values are
group_type,parent,action,visible, orcontent. - 
    
  
A comma list of the limit values. If supplied must have the same comma options as the limit parameter.
 
        GET
    /groups/list/{limit}/{limitvalue}
  
  curl \
 --request GET 'https://YOURSITE.infoodle.com/apiv2/groups/list/parent, visible/310, Y' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
    
        Response examples (200)
  
  {
  "groups": [
    {
      "id": 498,
      "name": "Newsletter Mailing List",
      "group_type": {
        "id": 13,
        "name": "Contact & Newsletters"
      },
      "locked": "N",
      "can_see_content": "N",
      "can_do_tasks": "N",
      "membership": {
        "code": "A",
        "text": "Administrator"
      },
      "use_as_visible_to": "N",
      "child_groups": []
    }
  ],
  "total_top_level_groups_shown": 1,
  "total_groups_shown": 5
}