Generate barcodes
documentedGenerate standard or branded barcode images (QR, PDF417) with optional branding graphics/text for client workflows.
Barcodesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
NOTE: Public CodeREADr API docs are behind login. The Barcode Generator API exists and the official docs live under secure.codereadr.com, per CodeREADr's Barcode Generator page and Developer API mention. If your account uses the api domain instead of secure, adjust accordingly. See sources: Barcode Generator page (turn1view0) and Developer API page (turn7search1/turn6search2).
npx -y keychains@latest curl "https://secure.codereadr.com/api/v1/barcode-generator/" \
-X GET \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
"https://secure.codereadr.com/api/v1/barcode-generator/?template_id={{template_id}}&query={{$query}}&page={{$page}}&limit={{$limit}}"
npx -y keychains@latest curl "https://secure.codereadr.com/api/v1/barcode-generator/" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"template_id": "{{$template_id}}",
"barcode_type": "{{$type}}",
"format": "{{$format}}",
"branding": {
"logo_url": "{{$logo_url}}",
"caption": "{{$caption}}"
},
"data": [
{"value": "{{$value1}}"},
{"value": "{{$value2}}"}
]
}'