PUT api/Affiliations?appId={appId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| appId | System.Guid |
Required |
Body Parameters
System.Collections.Generic.ICollection`1[Altai.Web.Services.Models.Affiliation]| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | System.Guid |
None. |
|
| AccountId | System.Guid |
None. |
|
| Name | System.String |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Id": "4c1676e0-b726-4d1a-a23d-1b36d34d46a2",
"AccountId": "e687494d-212c-40f3-a4b3-f16f99be0d64",
"Name": "sample string 2"
},
{
"Id": "4c1676e0-b726-4d1a-a23d-1b36d34d46a2",
"AccountId": "e687494d-212c-40f3-a4b3-f16f99be0d64",
"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>e687494d-212c-40f3-a4b3-f16f99be0d64</AccountId>
<Id>4c1676e0-b726-4d1a-a23d-1b36d34d46a2</Id>
<Name>sample string 2</Name>
</Affiliation>
<Affiliation>
<AccountId>e687494d-212c-40f3-a4b3-f16f99be0d64</AccountId>
<Id>4c1676e0-b726-4d1a-a23d-1b36d34d46a2</Id>
<Name>sample string 2</Name>
</Affiliation>
</ArrayOfAffiliation>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.