Hi all,
Complete noob here. I have a utility hook that’s doing a simple record creation and I’m having trouble getting the field data from BF back to FM. I can pass literals, but I’m not sure what the syntax for grabbing fields is. here’s what I tried for reference in case that helps
Page Builder:
“buttonClasses”: “btn btn-info”,
“styleClasses”: “col-md-3”,
“text”: “create a FM record”,
“icon”: “fa fa-apple”,
“type”: “button”,
“actions”:
[
{“action”: “runUtilityHook”,
“options”: {
“choice”: “create”,
“first”: nameFirst,
“last”: nameLast,
“email”: email
}
}
]
},
Data Model:{
“cryptoType”: “btc”,
“nameFirst”: “crack”,
“nameLast”: “smoker”,
“transactionType”: “short”
}