POST api/Washprices/WashpricesSave

Request Information

URI Parameters

None.

Body Parameters

WashpriceInfo
NameDescriptionTypeAdditional information
Washpriceid

string

None.

Name

string

None.

Pricerange

string

None.

Describe

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Washpriceid": "sample string 1",
  "Name": "sample string 2",
  "Pricerange": "sample string 3",
  "Describe": "sample string 4"
}

application/xml, text/xml

Sample:
<WashpriceInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YNF.Model">
  <Describe>sample string 4</Describe>
  <Name>sample string 2</Name>
  <Pricerange>sample string 3</Pricerange>
  <Washpriceid>sample string 1</Washpriceid>
</WashpriceInfo>

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 'WashpriceInfo'.

Response Information

Resource Description

ResultModel
NameDescriptionTypeAdditional information
IsSucceed

boolean

None.

MessageCode

integer

None.

Message

string

None.

Time

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSucceed": true,
  "MessageCode": 2,
  "Message": "sample string 3",
  "Time": "sample string 4",
  "Data": {}
}

application/xml, text/xml

Sample:
<ResultModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/YNF.Model">
  <Data />
  <IsSucceed>true</IsSucceed>
  <Message>sample string 3</Message>
  <MessageCode>2</MessageCode>
  <Time>sample string 4</Time>
</ResultModel>