Skip to content

Get Barcode

GET
/admin/barcodes/{id}
curl --request GET \
--url 'http://localhost:9000/admin/barcodes/example?limit=20&offset=0'
id
required
string
limit
integer
default: 20
offset
integer
0
order
string
fields
string

OK

Media type application/json
object
barcode
object
id
string
inventory_item_id
string
code
string
type
string
metadata
object
key
additional properties
any
created_at
string format: date-time
updated_at
string format: date-time
Example generated
{
"barcode": {
"id": "example",
"inventory_item_id": "example",
"code": "example",
"type": "example",
"metadata": {},
"created_at": "2026-04-15T12:00:00Z",
"updated_at": "2026-04-15T12:00:00Z"
}
}