Print Barcode Webhook

Print Barcode Webhook

This webhook will be called anytime a product barcode would be generated.

  • The custom barcodes must be available at a publicly accessible URL.
  • The URL must return a valid PDF file (Content-Type: application/pdf).
  • Lot and Expiration Date will be sent in the payload only when a specific lot is being worked on, for example when working on a Work Order.

Webhook Body:

{
  "account_id": "18963"
  "sku": "Sku1"
  "name": "Test Product"
  "barcode": "123456789"
  "lot": "TG90OjExNDQ3NQ"
  "expiration_date": "2025-03-25"
}

Response:

{
  "url": "https://www.your-example-pdf-url.com"
}