Make.com Integration

I am trying to create an inventory workflow where I can scan a box barcode and than I can see every asset barcode that is in that box. than I can scan a location and it updates every asset barcode that it is in that box and it its location.

I currently can’t do it this in glide because it will not allow me to have match multiple on to receive all items in the box.

How would I make this possible in Make.com to update all asset barcodes in a loop.

If you have access to webhook workflows, you can do it like this:

  • Scan the “box barcode”, it populates a user-specific field, and you can use a multiple relation to show all assets in that box.
  • Add a webhook workflow and copy the webhook URL.
  • Then, scan the “location barcode”, it populates another user-specific field and then trigger the webhook URL above with the box barcode and the location barcode in its body.
  • Go to the webhook workflow, add 2 query steps to query out the box barcode and location barcode.
  • Loop through the Assets table to find rows matching the box barcode.
  • Add a step in the loop to set the location info to each asset row (and other columns as well if you need).