POST api/TheWithholding/Add

Request Information

URI Parameters

None.

Body Parameters

TheWithholdingAddDto
NameDescriptionTypeAdditional information
Title

string

None.

Rate

integer

None.

Description

string

None.

IsActive

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "title": "sample string 1",
  "rate": 2,
  "description": "sample string 3",
  "isActive": true
}

application/xml, text/xml

Sample:
<TheWithholdingAddDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TP.TulTrack.Core.Service.DTOs">
  <Description>sample string 3</Description>
  <IsActive>true</IsActive>
  <Rate>2</Rate>
  <Title>sample string 1</Title>
</TheWithholdingAddDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

text/html

Sample:
{"title":"sample string 1","rate":2,"description":"sample string 3","isActive":true}

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml, text/html

Sample:

Sample not available.