POST api/POS/UpdateSignA?StoreNbr={StoreNbr}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
StoreNbr

integer

Required

Body Parameters

SignInfo
NameDescriptionTypeAdditional information
UPC

integer

None.

DocNum

integer

None.

Desc

string

None.

Brand

string

None.

Size

string

None.

Measure

string

None.

Unit

integer

None.

Retail

decimal number

None.

Value

decimal number

None.

ShowAS

string

None.

CRV

boolean

None.

ORV

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "UPC": 1,
  "DocNum": 2,
  "Desc": "sample string 3",
  "Brand": "sample string 4",
  "Size": "sample string 5",
  "Measure": "sample string 6",
  "Unit": 7,
  "Retail": 8.0,
  "Value": 9.0,
  "ShowAS": "sample string 10",
  "CRV": true,
  "ORV": true
}

application/xml, text/xml

Sample:
<SignInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BBIC_WebApi.Models">
  <Brand>sample string 4</Brand>
  <CRV>true</CRV>
  <Desc>sample string 3</Desc>
  <DocNum>2</DocNum>
  <Measure>sample string 6</Measure>
  <ORV>true</ORV>
  <Retail>8</Retail>
  <ShowAS>sample string 10</ShowAS>
  <Size>sample string 5</Size>
  <UPC>1</UPC>
  <Unit>7</Unit>
  <Value>9</Value>
</SignInfo>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.