Create Barcode Generator
POST
/admin/barcode-generator
const url = 'http://localhost:9000/admin/barcode-generator';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"bcid":"example","serial":"example","height":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url http://localhost:9000/admin/barcode-generator \ --header 'Content-Type: application/json' \ --data '{ "bcid": "example", "serial": "example", "height": "example" }'Request Body required
Section titled “Request Body required ” Media type application/json
object
bcid
string
serial
string
height
string
Example generated
{ "bcid": "example", "serial": "example", "height": "example"}Responses
Section titled “ Responses ”OK
Media type application/json
object
Example generated
{}