GET api/Affiliations

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

System.Collections.Generic.IEnumerable`1[Altai.Web.Services.Models.Affiliation]
NameDescriptionTypeAdditional information
Id

System.Guid

None.

AccountId

System.Guid

None.

Name

System.String

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "273538e3-a8cd-40a3-817e-2ef3bb23c710",
    "AccountId": "f9a8cd15-0548-4f22-8c5c-c3572a5c81e1",
    "Name": "sample string 2"
  },
  {
    "Id": "273538e3-a8cd-40a3-817e-2ef3bb23c710",
    "AccountId": "f9a8cd15-0548-4f22-8c5c-c3572a5c81e1",
    "Name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAffiliation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Altai.Web.Services.Models">
  <Affiliation>
    <AccountId>f9a8cd15-0548-4f22-8c5c-c3572a5c81e1</AccountId>
    <Id>273538e3-a8cd-40a3-817e-2ef3bb23c710</Id>
    <Name>sample string 2</Name>
  </Affiliation>
  <Affiliation>
    <AccountId>f9a8cd15-0548-4f22-8c5c-c3572a5c81e1</AccountId>
    <Id>273538e3-a8cd-40a3-817e-2ef3bb23c710</Id>
    <Name>sample string 2</Name>
  </Affiliation>
</ArrayOfAffiliation>