Zapier Zap 没有 运行 当它应该
Zapier Zap doesn't run when it is supposed to
我创建了一个 zap,它应该在我们的平台上添加新潜在客户时 运行 并将其保存到 google 工作表。当我测试触发器时它工作正常。但是,当我打开 zap 时,它不会在添加新潜在客户时触发。即使我 运行 它手动通过“运行 Zap” 它说没有新的线索,但是有。当我通过单击“加载更多”来测试触发器时,它毫无问题地获得了新的线索。我尝试打开和关闭 zap - 似乎没有任何效果。
这是我用于请求的代码。
const currentDate = new Date();
const year = currentDate.getFullYear();
const month = currentDate.getMonth() + 1;
const day = currentDate.getDate();
const options = {
url: 'api_url',
method: 'GET',
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json',
'x-api-key': bundle.authData['api-key'],
'client_id': bundle.authData['client_id']
},
params: {
'year': year,
'month': month,
'day': day,
'page_size': '1000'
}
}
return z.request(options)
.then((response) => {
response.throwForStatus();
const results = response.json;
// You can do any parsing you need for results here before returning them
for(let i = 0; i < results.data.length; i++){
if(typeof results.data[i].id === 'undefined'){
results.data[i].id = i;
}
//formating page urls
let charArr = results.data[i].page_url_list.split('');
for(let j = 0; j < charArr.length; j++){
if(charArr[j] === /\n/ || charArr[j] === /\r/){
charArr[j] = " ";
}
}
const jsonObj = JSON.parse(charArr.join(''));
const URLS = [];
for(let k = 0; k < jsonObj.pages.length; k++){
URLS.push(jsonObj.pages[k].page_url + "\n");
}
results.data[i].page_url_list = URLS.toString();
//formating the timestamp
results.data[i].time = new Date(Number(results.data[i].time));
}
return results.data;
});
添加新潜在客户时,对于此类触发器,您必须使用 webhooks(https://zapier.com/page/webhooks/) or build your zapier Apps using resthooks(https://platform.zapier.com/cli_tutorials/resthooks)。
我刚刚设置了results.data[i].id = results.data[i].time
并且 zap 现在可以正常工作了
我创建了一个 zap,它应该在我们的平台上添加新潜在客户时 运行 并将其保存到 google 工作表。当我测试触发器时它工作正常。但是,当我打开 zap 时,它不会在添加新潜在客户时触发。即使我 运行 它手动通过“运行 Zap” 它说没有新的线索,但是有。当我通过单击“加载更多”来测试触发器时,它毫无问题地获得了新的线索。我尝试打开和关闭 zap - 似乎没有任何效果。 这是我用于请求的代码。
const currentDate = new Date();
const year = currentDate.getFullYear();
const month = currentDate.getMonth() + 1;
const day = currentDate.getDate();
const options = {
url: 'api_url',
method: 'GET',
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json',
'x-api-key': bundle.authData['api-key'],
'client_id': bundle.authData['client_id']
},
params: {
'year': year,
'month': month,
'day': day,
'page_size': '1000'
}
}
return z.request(options)
.then((response) => {
response.throwForStatus();
const results = response.json;
// You can do any parsing you need for results here before returning them
for(let i = 0; i < results.data.length; i++){
if(typeof results.data[i].id === 'undefined'){
results.data[i].id = i;
}
//formating page urls
let charArr = results.data[i].page_url_list.split('');
for(let j = 0; j < charArr.length; j++){
if(charArr[j] === /\n/ || charArr[j] === /\r/){
charArr[j] = " ";
}
}
const jsonObj = JSON.parse(charArr.join(''));
const URLS = [];
for(let k = 0; k < jsonObj.pages.length; k++){
URLS.push(jsonObj.pages[k].page_url + "\n");
}
results.data[i].page_url_list = URLS.toString();
//formating the timestamp
results.data[i].time = new Date(Number(results.data[i].time));
}
return results.data;
});
添加新潜在客户时,对于此类触发器,您必须使用 webhooks(https://zapier.com/page/webhooks/) or build your zapier Apps using resthooks(https://platform.zapier.com/cli_tutorials/resthooks)。
我刚刚设置了results.data[i].id = results.data[i].time 并且 zap 现在可以正常工作了