POST api/PumpAndroid/SaveIndentBarcode/{code}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
code

string

None.

Body Parameters

IndentBarcode
NameDescriptionTypeAdditional information
Code

string

None.

SupplierId

integer

None.

IndentId1

integer

None.

IndentId

integer

None.

BarcodeNo

string

None.

Active

string

None.

IndentNo

string

None.

BillNo

string

None.

Denomination

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Code": "sample string 1",
  "SupplierId": 2,
  "IndentId1": 3,
  "IndentId": 4,
  "BarcodeNo": "sample string 5",
  "Active": "sample string 6",
  "IndentNo": "sample string 7",
  "BillNo": "sample string 8",
  "Denomination": "sample string 9"
}

application/xml, text/xml

Sample:
<IndentBarcode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApp.Models">
  <Active>sample string 6</Active>
  <BarcodeNo>sample string 5</BarcodeNo>
  <BillNo>sample string 8</BillNo>
  <Code>sample string 1</Code>
  <Denomination>sample string 9</Denomination>
  <IndentId>4</IndentId>
  <IndentId1>3</IndentId1>
  <IndentNo>sample string 7</IndentNo>
  <SupplierId>2</SupplierId>
</IndentBarcode>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Response
NameDescriptionTypeAdditional information
Message

string

None.

Status

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "Status": 2
}

application/xml, text/xml

Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApp.Models">
  <Message>sample string 1</Message>
  <Status>2</Status>
</Response>