POST api/Sections/{sectionId}/WorkItemsAddManual
Put work items manual to section
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| sectionId | integer |
Required |
Body Parameters
WorkItemManualDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
Required String length: inclusive between 0 and 25 |
|
| Description | string |
Required String length: inclusive between 0 and 255 |
|
| Pep | string |
None. |
|
| Id | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"code": "sample string 1",
"description": "sample string 2",
"pep": "sample string 3",
"id": 4
}
text/html
Sample:
{"code":"sample string 1","description":"sample string 2","pep":"sample string 3","id":4}
application/xml, text/xml
Sample:
<WorkItemManualDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.SubcontractModule.Application.Dtos.Dtos.SectionAgg"> <Code>sample string 1</Code> <Description>sample string 2</Description> <Id>4</Id> <Pep>sample string 3</Pep> </WorkItemManualDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json, text/html
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>