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": "e1f4fee7-79de-4427-aca5-52cb392ec588",
    "AccountId": "c970e564-1156-4c21-8b3d-fef881274870",
    "Name": "sample string 2"
  },
  {
    "Id": "e1f4fee7-79de-4427-aca5-52cb392ec588",
    "AccountId": "c970e564-1156-4c21-8b3d-fef881274870",
    "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>c970e564-1156-4c21-8b3d-fef881274870</AccountId>
    <Id>e1f4fee7-79de-4427-aca5-52cb392ec588</Id>
    <Name>sample string 2</Name>
  </Affiliation>
  <Affiliation>
    <AccountId>c970e564-1156-4c21-8b3d-fef881274870</AccountId>
    <Id>e1f4fee7-79de-4427-aca5-52cb392ec588</Id>
    <Name>sample string 2</Name>
  </Affiliation>
</ArrayOfAffiliation>