GET api/Affiliations?appId={appId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
appId

System.Guid

Required

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": "07b3e14a-67ef-4f92-bf06-cf1f4e57d687",
    "AccountId": "e002eb47-1b43-4f61-b63b-a66ed97db0e3",
    "Name": "sample string 2"
  },
  {
    "Id": "07b3e14a-67ef-4f92-bf06-cf1f4e57d687",
    "AccountId": "e002eb47-1b43-4f61-b63b-a66ed97db0e3",
    "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>e002eb47-1b43-4f61-b63b-a66ed97db0e3</AccountId>
    <Id>07b3e14a-67ef-4f92-bf06-cf1f4e57d687</Id>
    <Name>sample string 2</Name>
  </Affiliation>
  <Affiliation>
    <AccountId>e002eb47-1b43-4f61-b63b-a66ed97db0e3</AccountId>
    <Id>07b3e14a-67ef-4f92-bf06-cf1f4e57d687</Id>
    <Name>sample string 2</Name>
  </Affiliation>
</ArrayOfAffiliation>