Multi-Reference with Webflow, Zapier, & Integromat

View on Youtube

In this video I walk through using Webflow multi-reference fields with Zapier and Integromat.

Code for Integromat Steps:

Set Variable:

switch (XXFIELDXX; true;"IDNUMBERGOESHERE", ;"")

Remove Last Two Characters:

substring(XXCONCANTFIELDXX; 0; length(XXCONCANTFIELDXX) - 2)

Code for Zapier

Custom step is: util.lineitem_to_string

Code for Code by Zapier step is:

const str = inputData.ref;
const newStr = str.substring(0, str.length - 2);
return {refs: newStr}