Hi,
When trying to request a gs1-128 barcode via the BarcodeGenerator API I'm getting a 400 error with an error Im not familair with
https://api.zebra.com/v2/tools/barcode/generate/?symbology=gs1-128&text=...
Returns:
{
"errorResponse": {
"code": "400",
"message": "Received non success response code",
"info": "http://developer.savanna.zebra.com/search/node/%20v2/tools/barcode/gener...,
"errorDetail": "array-marker-not-found\n at $a (/srv/bwipp.js"
}
}
code128 works fine, so I dont think it's a checkdigit or data issue.
Any ideas?
Thanks for the help.
Found the issue. Looks like the API wants the AI sent in brackets for gs1-128.
So, this works:
"https://api.zebra.com/v2/tools/barcode/generate/?symbology=gs1-128&text=(00)106265390001000593"
But this does not
"https://api.zebra.com/v2/tools/barcode/generate/?symbology=gs1-128&text=...
Points: 1
You voted ‘up’
Log in to post comments