PUT api/TheWithholding/Update
Request Information
URI Parameters
None.
Body Parameters
TheWithholdingUpdateDtoName | Description | Type | Additional information |
---|---|---|---|
Title | string |
None. |
|
Rate | integer |
None. |
|
Description | string |
None. |
|
IsActive | boolean |
None. |
|
ID | globally unique identifier |
Required |
|
CompanyID | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "title": "sample string 1", "rate": 2, "description": "sample string 3", "isActive": true, "id": "8fc56ebc-7d72-46a6-96ed-a8a9b28a900c", "companyID": "df35b70f-d6c8-4964-80bc-67845cbb5d15" }
application/xml, text/xml
Sample:
<TheWithholdingUpdateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TP.TulTrack.Core.Service.DTOs"> <CompanyID>df35b70f-d6c8-4964-80bc-67845cbb5d15</CompanyID> <ID>8fc56ebc-7d72-46a6-96ed-a8a9b28a900c</ID> <Description>sample string 3</Description> <IsActive>true</IsActive> <Rate>2</Rate> <Title>sample string 1</Title> </TheWithholdingUpdateDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"title":"sample string 1","rate":2,"description":"sample string 3","isActive":true,"id":"8fc56ebc-7d72-46a6-96ed-a8a9b28a900c","companyID":"df35b70f-d6c8-4964-80bc-67845cbb5d15"}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.