POST api/chapterwall/putchapterwall
Request Information
URI Parameters
None.
Body Parameters
PutChapterWallRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ChapterId | integer |
None. |
|
| ChapterWallId | integer |
None. |
|
| Title | string |
None. |
|
| Description | string |
None. |
|
| PostedBy | string |
None. |
|
| CategoryId | integer |
None. |
|
| Hided | boolean |
None. |
|
| VisibilityTypeId | byte |
None. |
|
| ConnectedChapterIds | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ChapterId": 1,
"ChapterWallId": 2,
"Title": "sample string 3",
"Description": "sample string 4",
"PostedBy": "sample string 5",
"CategoryId": 6,
"Hided": true,
"VisibilityTypeId": 64,
"ConnectedChapterIds": "sample string 9"
}
application/xml, text/xml
Sample:
<PutChapterWallRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ModelsLayer"> <CategoryId>6</CategoryId> <ChapterId>1</ChapterId> <ChapterWallId>2</ChapterWallId> <ConnectedChapterIds>sample string 9</ConnectedChapterIds> <Description>sample string 4</Description> <Hided>true</Hided> <PostedBy>sample string 5</PostedBy> <Title>sample string 3</Title> <VisibilityTypeId>64</VisibilityTypeId> </PutChapterWallRequest>
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.