GET associations({associationId})/representatives/relationships/representatives

Method to get a representative's followed representatives

Request Information

Parameters

NameDescriptionAdditional information
associationId
Association of interest

Define this parameter in the request URI.

Response Information

Representative ids that the given representative is following

Response body formats

application/json, text/json

Sample:
[
  {
    "StartRepresentativeId": 1,
    "EndRepresentativeId": 2,
    "RelationshipType": 64
  },
  {
    "StartRepresentativeId": 1,
    "EndRepresentativeId": 2,
    "RelationshipType": 64
  },
  {
    "StartRepresentativeId": 1,
    "EndRepresentativeId": 2,
    "RelationshipType": 64
  }
]

application/xml, text/xml

Sample:
<ArrayOfRepresentativeRelationshipResource xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MicroNet.WebAPI.Classes.Resources">
  <RepresentativeRelationshipResource>
    <EndRepresentativeId>2</EndRepresentativeId>
    <RelationshipType>64</RelationshipType>
    <StartRepresentativeId>1</StartRepresentativeId>
  </RepresentativeRelationshipResource>
  <RepresentativeRelationshipResource>
    <EndRepresentativeId>2</EndRepresentativeId>
    <RelationshipType>64</RelationshipType>
    <StartRepresentativeId>1</StartRepresentativeId>
  </RepresentativeRelationshipResource>
  <RepresentativeRelationshipResource>
    <EndRepresentativeId>2</EndRepresentativeId>
    <RelationshipType>64</RelationshipType>
    <StartRepresentativeId>1</StartRepresentativeId>
  </RepresentativeRelationshipResource>
</ArrayOfRepresentativeRelationshipResource>

text/csv

Sample:
StartRepresentativeId,EndRepresentativeId,RelationshipType
"1","2","64"
"1","2","64"
"1","2","64"