GET api/EanFormats/{id}?dx={dx}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

dx

string

Required

Body Parameters

None.

Response Information

Resource Description

EanFormats
NameDescriptionTypeAdditional information
szScanFlag

string

None.

nCodeDigits

integer

None.

bCheckDigitFg

boolean

None.

enPrnType

string

None.

enScanType

string

None.

deciVarDivisorPrice

decimal number

None.

deciVarDivisorWeight

decimal number

None.

bEanPluTypeFg

boolean

None.

szPrnFlag

string

None.

nPrnCodeDigits

integer

None.

bPrnCheckDigitFg

boolean

None.

Response Formats

application/xml, text/xml

Sample:
<EanFormats xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MPUAPI">
  <bCheckDigitFg>true</bCheckDigitFg>
  <bEanPluTypeFg>true</bEanPluTypeFg>
  <bPrnCheckDigitFg>true</bPrnCheckDigitFg>
  <deciVarDivisorPrice>1</deciVarDivisorPrice>
  <deciVarDivisorWeight>1</deciVarDivisorWeight>
  <enPrnType>sample string 2</enPrnType>
  <enScanType>sample string 3</enScanType>
  <nCodeDigits>1</nCodeDigits>
  <nPrnCodeDigits>1</nPrnCodeDigits>
  <szPrnFlag>sample string 4</szPrnFlag>
  <szScanFlag>sample string 1</szScanFlag>
</EanFormats>

application/json, text/json

Sample:
{
  "szScanFlag": "sample string 1",
  "nCodeDigits": 1,
  "bCheckDigitFg": true,
  "enPrnType": "sample string 2",
  "enScanType": "sample string 3",
  "deciVarDivisorPrice": 1.0,
  "deciVarDivisorWeight": 1.0,
  "bEanPluTypeFg": true,
  "szPrnFlag": "sample string 4",
  "nPrnCodeDigits": 1,
  "bPrnCheckDigitFg": true
}