GET api/Affiliations?appId={appId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| appId | System.Guid |
Required |
Body Parameters
None.
Response Information
Resource Description
System.Collections.Generic.IEnumerable`1[Altai.Web.Services.Models.Affiliation]| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | System.Guid |
None. |
|
| AccountId | System.Guid |
None. |
|
| Name | System.String |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "d096f171-5d84-426a-b07e-675a609db703",
"AccountId": "bc2be6a1-5f24-4efc-b26d-1cab40ed1fd8",
"Name": "sample string 2"
},
{
"Id": "d096f171-5d84-426a-b07e-675a609db703",
"AccountId": "bc2be6a1-5f24-4efc-b26d-1cab40ed1fd8",
"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>bc2be6a1-5f24-4efc-b26d-1cab40ed1fd8</AccountId>
<Id>d096f171-5d84-426a-b07e-675a609db703</Id>
<Name>sample string 2</Name>
</Affiliation>
<Affiliation>
<AccountId>bc2be6a1-5f24-4efc-b26d-1cab40ed1fd8</AccountId>
<Id>d096f171-5d84-426a-b07e-675a609db703</Id>
<Name>sample string 2</Name>
</Affiliation>
</ArrayOfAffiliation>