POST api/barcodeformats
Save barcode formats
Request Information
URI Parameters
None.
Body Parameters
List of barcode format objects to save
Collection of BarcodeFormat| Name | Description | Type | Additional 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:
[
{
"$id": "1",
"prefix": "sample string 1",
"format": "sample string 2",
"modified": "2026-04-03T06:20:23.9010808",
"pad128": 1
},
{
"$ref": "1"
}
]
application/xml, text/xml
Sample:
<ArrayOfBarcodeFormat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.Barcodes">
<BarcodeFormat>
<Format>sample string 2</Format>
<Modified>2026-04-03T06:20:23.9010808+00:00</Modified>
<Pad128>1</Pad128>
<Prefix>sample string 1</Prefix>
</BarcodeFormat>
<BarcodeFormat>
<Format>sample string 2</Format>
<Modified>2026-04-03T06:20:23.9010808+00:00</Modified>
<Pad128>1</Pad128>
<Prefix>sample string 1</Prefix>
</BarcodeFormat>
</ArrayOfBarcodeFormat>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.