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": "75390a78-154d-42a0-bb2c-80fa27de3731",
    "AccountId": "3d3223e3-b20e-40b5-a0d0-61f0a1273d9b",
    "Name": "sample string 2"
  },
  {
    "Id": "75390a78-154d-42a0-bb2c-80fa27de3731",
    "AccountId": "3d3223e3-b20e-40b5-a0d0-61f0a1273d9b",
    "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>3d3223e3-b20e-40b5-a0d0-61f0a1273d9b</AccountId>
    <Id>75390a78-154d-42a0-bb2c-80fa27de3731</Id>
    <Name>sample string 2</Name>
  </Affiliation>
  <Affiliation>
    <AccountId>3d3223e3-b20e-40b5-a0d0-61f0a1273d9b</AccountId>
    <Id>75390a78-154d-42a0-bb2c-80fa27de3731</Id>
    <Name>sample string 2</Name>
  </Affiliation>
</ArrayOfAffiliation>