POST api/Common/DepartmentRateList

Request Information

URI Parameters

None.

Body Parameters

DepartmentRateListBO
NameDescriptionTypeAdditional information
IsActive

integer

None.

Result_status

integer

None.

Msg

string

None.

Error_message

string

None.

DepartmentId

integer

None.

DepartmentName

string

None.

Rate

decimal number

None.

Discount_per

decimal number

None.

FinalRate

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "IsActive": 1,
  "Result_status": 2,
  "Msg": "sample string 3",
  "Error_message": "sample string 4",
  "DepartmentId": 5,
  "DepartmentName": "sample string 6",
  "Rate": 7.0,
  "Discount_per": 8.0,
  "FinalRate": 9.0
}

application/xml, text/xml

Sample:
<DepartmentRateListBO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BO.Common">
  <DepartmentId>5</DepartmentId>
  <DepartmentName>sample string 6</DepartmentName>
  <Discount_per>8</Discount_per>
  <Error_message>sample string 4</Error_message>
  <FinalRate>9</FinalRate>
  <IsActive>1</IsActive>
  <Msg>sample string 3</Msg>
  <Rate>7</Rate>
  <Result_status>2</Result_status>
</DepartmentRateListBO>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'DepartmentRateListBO'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.