PUT api/Affiliations?appId={appId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
appId

System.Guid

Required

Body Parameters

System.Collections.Generic.ICollection`1[Altai.Web.Services.Models.Affiliation]
NameDescriptionTypeAdditional information
Id

System.Guid

None.

AccountId

System.Guid

None.

Name

System.String

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "Id": "b98dc7bf-7b2e-4f8d-b629-e6666dccbd00",
    "AccountId": "479617f5-470a-4e26-a449-1d14a41769df",
    "Name": "sample string 2"
  },
  {
    "Id": "b98dc7bf-7b2e-4f8d-b629-e6666dccbd00",
    "AccountId": "479617f5-470a-4e26-a449-1d14a41769df",
    "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>479617f5-470a-4e26-a449-1d14a41769df</AccountId>
    <Id>b98dc7bf-7b2e-4f8d-b629-e6666dccbd00</Id>
    <Name>sample string 2</Name>
  </Affiliation>
  <Affiliation>
    <AccountId>479617f5-470a-4e26-a449-1d14a41769df</AccountId>
    <Id>b98dc7bf-7b2e-4f8d-b629-e6666dccbd00</Id>
    <Name>sample string 2</Name>
  </Affiliation>
</ArrayOfAffiliation>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.