这是我的工作流程:
在第2步和第3步之间是Zapier进来的地方。我正在尝试使用Zapier从ScheduleOnce预订中捕获数据。然后我尝试使用Zap将该数据发送到该人被重定向到的页面,以自动填充一些字段。
我认为使用Code Javascript功能会起作用,但事实并非如此。所以我在考虑使用StoreClient选项或API。我很困惑如何让流程工作来访问数据并自动填充下一个重定向页面上的字段。
非常感谢一些帮助。
以下是我对Javascript选项的代码:
var store = StoreClient("Secret");
store
.setMany({firstName: inputData.firstName, lastName: inputData.lastName, email: inputData.email, mobilePhone: inputData.mobilePhone, otherPhone: inputData.otherPhone, businessWebsite: inputData.businessWebsite})
.then(function() {
return store.getMany('firstName', 'lastName', 'email', 'mobilePhone', 'otherPhone', 'businessWebsite');
})
.then(function() {
callback();
})
.catch(callback);
答案 0 :(得分:1)
David来自Zapier平台团队。这是一个很酷的用例,可能是可能的。你需要记住的是,Zapier完全独立于用户运行,因此交互必须是间接的。 Zapier无法将您的用户重定向到任何地方,它只能存储数据以响应按钮按下。
在你的情况下,你可以跳过setMany
之后的所有内容,因为你没有尝试使用zap中的值;你只需要存储它们(并验证操作是否完成而没有错误)。
var store = StoreClient("Secret");
store
.setMany({firstName: inputData.firstName, lastName: inputData.lastName, email: inputData.email, mobilePhone: inputData.mobilePhone, otherPhone: inputData.otherPhone, businessWebsite: inputData.businessWebsite})
.catch(callback);
你需要解决几个问题:
store.zapier.com
发出http请求以检索存储的数据并在视图。如果yoursite.com/landing?email=david@zapier.com
,后端知道要查找(存储中的david@zapier.com
键)并且可以使用正确的信息呈现视图。 为此,我将代码调整为以下内容:
var store = StoreClient("Secret");
store
.set(inputData.email, JSON.stringify({firstName: inputData.firstName, lastName: inputData.lastName, email: inputData.email, mobilePhone: inputData.mobilePhone, otherPhone: inputData.otherPhone, businessWebsite: inputData.businessWebsite}))
.catch(callback);
希望指出你正确的方向。你正在使用一个相当复杂的工作流程,但我打赌你可以做到这一点!