GET associations({associationId})/groups/members

Gets all group members in all group

Request Information

Parameters

NameDescriptionAdditional information
associationId
association of interest

Define this parameter in the request URI.

Response Information

Bunch of group members

Response body formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "MemberTypeId": 1,
    "ContactId": 1,
    "IsDisabled": true,
    "DoNotContact": true,
    "GroupId": 1,
    "Order": 1,
    "Role": "sample string 2"
  },
  {
    "Id": 1,
    "MemberTypeId": 1,
    "ContactId": 1,
    "IsDisabled": true,
    "DoNotContact": true,
    "GroupId": 1,
    "Order": 1,
    "Role": "sample string 2"
  },
  {
    "Id": 1,
    "MemberTypeId": 1,
    "ContactId": 1,
    "IsDisabled": true,
    "DoNotContact": true,
    "GroupId": 1,
    "Order": 1,
    "Role": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfGroupMemberResource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MicroNet.WebAPI.Classes.Resources">
  <GroupMemberResource>
    <ContactId>1</ContactId>
    <DoNotContact>true</DoNotContact>
    <GroupId>1</GroupId>
    <Id>1</Id>
    <IsDisabled>true</IsDisabled>
    <MemberTypeId>1</MemberTypeId>
    <Order>1</Order>
    <Role>sample string 2</Role>
  </GroupMemberResource>
  <GroupMemberResource>
    <ContactId>1</ContactId>
    <DoNotContact>true</DoNotContact>
    <GroupId>1</GroupId>
    <Id>1</Id>
    <IsDisabled>true</IsDisabled>
    <MemberTypeId>1</MemberTypeId>
    <Order>1</Order>
    <Role>sample string 2</Role>
  </GroupMemberResource>
  <GroupMemberResource>
    <ContactId>1</ContactId>
    <DoNotContact>true</DoNotContact>
    <GroupId>1</GroupId>
    <Id>1</Id>
    <IsDisabled>true</IsDisabled>
    <MemberTypeId>1</MemberTypeId>
    <Order>1</Order>
    <Role>sample string 2</Role>
  </GroupMemberResource>
</ArrayOfGroupMemberResource>

text/csv

Sample:
Id,MemberTypeId,ContactId,IsDisabled,DoNotContact,GroupId,Order,Role
"1","1","1","True","True","1","1","sample string 2"
"1","1","1","True","True","1","1","sample string 2"
"1","1","1","True","True","1","1","sample string 2"