POST api/v1/Section/update
Cập nhật nhóm việc
Request Information
URI Parameters
None.
Body Parameters
UpdateSectionBindModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SectionId | integer |
Required |
|
| SectionName | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"SectionId": 1,
"SectionName": "sample string 2"
}
application/xml, text/xml
Sample:
<UpdateSectionBindModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PublicAPI.Models"> <SectionId>1</SectionId> <SectionName>sample string 2</SectionName> </UpdateSectionBindModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReturnResult| Name | Description | Type | Additional information |
|---|---|---|---|
| ErrorCode | integer |
None. |
|
| ErrorMessage | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"ErrorCode": 1,
"ErrorMessage": "sample string 2",
"Data": {}
}
application/xml, text/xml
Sample:
<ReturnResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TeamworkClassLibrary"> <Data /> <ErrorCode>1</ErrorCode> <ErrorMessage>sample string 2</ErrorMessage> </ReturnResult>