POST api/Label/Item/Value

Save Item Value definition by given object.

Request Information

URI Parameters

None.

Body Parameters

DTO_Label_Item_Value
NameDescriptionTypeAdditional information
ID

string

None.

Item_ID

string

None.

Type_ID

string

None.

Value

string

None.

Sort

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": "sample string 1",
  "Item_ID": "sample string 2",
  "Type_ID": "sample string 3",
  "Value": "sample string 4",
  "Sort": 5
}

application/xml, text/xml

Sample:
<DTO_Label_Item_Value xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PrintService.DTO">
  <ID>sample string 1</ID>
  <Item_ID>sample string 2</Item_ID>
  <Sort>5</Sort>
  <Type_ID>sample string 3</Type_ID>
  <Value>sample string 4</Value>
</DTO_Label_Item_Value>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.