POST api/AE/SchreibeBarcodes

POST api/AE/SchreibeBarcodes

Add new Barcodes to existing item (either by using an existing BC or the IDCode)

Request Information

URI Parameters

None.

Body Parameters

list of PPCBarcode

Collection of PPCBarcode
NameDescriptionTypeAdditional information
Barcode

the new Barcode that should be added

string

None.

IDCode

The IDCode of the item

string

None.

BarcodeBekannt

The Barcode that is already in the system and linked to the item

string

None.

Gruppe

the group of the barcode

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "Barcode": "sample string 1",
    "IDCode": "sample string 2",
    "BarcodeBekannt": "sample string 3",
    "Gruppe": "sample string 4"
  },
  {
    "Barcode": "sample string 1",
    "IDCode": "sample string 2",
    "BarcodeBekannt": "sample string 3",
    "Gruppe": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfPPCBarcode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KOSTIFC">
  <PPCBarcode>
    <Barcode>sample string 1</Barcode>
    <BarcodeBekannt>sample string 3</BarcodeBekannt>
    <Gruppe>sample string 4</Gruppe>
    <IDCode>sample string 2</IDCode>
  </PPCBarcode>
  <PPCBarcode>
    <Barcode>sample string 1</Barcode>
    <BarcodeBekannt>sample string 3</BarcodeBekannt>
    <Gruppe>sample string 4</Gruppe>
    <IDCode>sample string 2</IDCode>
  </PPCBarcode>
</ArrayOfPPCBarcode>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

http response

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.