POST api/chapter/post
Request Information
URI Parameters
None.
Body Parameters
ChapterPostRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| Description | string |
None. |
|
| Private | boolean |
None. |
|
| AutoApproveRequirements | boolean |
None. |
|
| AutoApproveJobs | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"Description": "sample string 2",
"Private": true,
"AutoApproveRequirements": true,
"AutoApproveJobs": true
}
application/xml, text/xml
Sample:
<ChapterPostRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ModelsLayer"> <AutoApproveJobs>true</AutoApproveJobs> <AutoApproveRequirements>true</AutoApproveRequirements> <Description>sample string 2</Description> <Name>sample string 1</Name> <Private>true</Private> </ChapterPostRequest>
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.