PUT api/barcodeformat/{id}
Save barcode format
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Prefix of format to save |
string |
Required |
Body Parameters
Barcode format object to save
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:
{
"prefix": "sample string 1",
"format": "sample string 2",
"modified": "2026-04-03T06:20:28.855942",
"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>2026-04-03T06:20:28.855942+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.