PUT api/Follow/List
Request Information
URI Parameters
None.
Body Parameters
CreateListModel| Name | Description | Type | Additional information |
|---|---|---|---|
| IdFollowList | integer |
None. |
|
| Name | string |
None. |
|
| Description | string |
None. |
|
| IsPublic | boolean |
None. |
|
| Items | Collection of FollowListItem |
None. |
Request Formats
application/json, text/json
Sample:
{
"IdFollowList": 1,
"Name": "sample string 2",
"Description": "sample string 3",
"IsPublic": true,
"Items": [
{
"IdFollowListItem": 1,
"IdFollowList": 2,
"IdIdea": 1,
"IdLaw": 1,
"IdCommission": 1,
"IdActor": 1,
"Type": 1
},
{
"IdFollowListItem": 1,
"IdFollowList": 2,
"IdIdea": 1,
"IdLaw": 1,
"IdCommission": 1,
"IdActor": 1,
"Type": 1
}
]
}
application/xml, text/xml
Sample:
<CreateListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalMind.AgendaV3.WebApi.Models">
<Description>sample string 3</Description>
<IdFollowList>1</IdFollowList>
<IsPublic>true</IsPublic>
<Items xmlns:d2p1="http://schemas.datacontract.org/2004/07/GlobalMind.AgendaV2.Domain">
<d2p1:FollowListItem>
<d2p1:IdActor>1</d2p1:IdActor>
<d2p1:IdCommission>1</d2p1:IdCommission>
<d2p1:IdFollowList>2</d2p1:IdFollowList>
<d2p1:IdFollowListItem>1</d2p1:IdFollowListItem>
<d2p1:IdIdea>1</d2p1:IdIdea>
<d2p1:IdLaw>1</d2p1:IdLaw>
</d2p1:FollowListItem>
<d2p1:FollowListItem>
<d2p1:IdActor>1</d2p1:IdActor>
<d2p1:IdCommission>1</d2p1:IdCommission>
<d2p1:IdFollowList>2</d2p1:IdFollowList>
<d2p1:IdFollowListItem>1</d2p1:IdFollowListItem>
<d2p1:IdIdea>1</d2p1:IdIdea>
<d2p1:IdLaw>1</d2p1:IdLaw>
</d2p1:FollowListItem>
</Items>
<Name>sample string 2</Name>
</CreateListModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.