© 2026 Clarivate
POST /api/.../barcodes
Return a generated barcode as an SVG image.
Note: The barcode value is provided in the request body.
| Name | Type | Required | Description |
|---|---|---|---|
| barcodeRequest | DtoBarcodeRequest | Yes | Define this parameter in the request body. |
| Property | Type | Nullable | Description |
|---|---|---|---|
| formatID | Integer | No | Barcode print format ID (configured in the system). Supported available formats: Code 39 and Codabar |
| barcode | String | No | The barcode value to encode. |
{
"formatID": 1,
"barcode": "1234567890"
}
<svg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 21 21'>
...
</svg>
| Code | Description |
|---|---|
| 200 | OK. Success |