POST api/barcodeformat/{id}

Save barcode format

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Prefix of format to save

string

Required

Body Parameters

Barcode format object to save

BarcodeFormat
NameDescriptionTypeAdditional information
Prefix

string

String length: inclusive between 0 and 45

Format

string

String length: inclusive between 0 and 45

Modified

date

None.

Pad128

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "prefix": "sample string 1",
  "format": "sample string 2",
  "modified": "2025-06-14T06:25:56.7275967",
  "pad128": 1
}

application/xml, text/xml

Sample:
<BarcodeFormat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.Barcodes">
  <Format>sample string 2</Format>
  <Modified>2025-06-14T06:25:56.7275967+00:00</Modified>
  <Pad128>1</Pad128>
  <Prefix>sample string 1</Prefix>
</BarcodeFormat>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.