Speed up warehouse label work by pulling roll data and product grade details into one clean payload. A simple POST request starts the flow and returns ready to print data. Operations and inventory teams can issue labels faster with fewer errors.
The flow begins with a webhook that receives the request. It then fetches print settings from a config service, collects roll details from PostgreSQL, and loads product grade data from MySQL. A function prepares the input, and a merge step ties both datasets together using the movement detail id. The response returns only after the merge completes, so your label app gets one consistent dataset.
Setup needs access to both databases and a reachable config endpoint. Expect faster label runs, lower error rates, and less copy paste. Great for cutting rooms, receiving, and production lines where rolls are tracked and labeled often.