如何将查找/搜索步骤连接到更新步骤

问题描述 投票:1回答:1

zapier-cli应用程序中,如何在动态字段旁边创建Add a search step按钮,该按钮将用于填充要更新的对象的ID,如下图所示,在Zapier的文档中描述https://zapier.com/help/how-connect-findsearch-step-update-step/

enter image description here

这是我的InputField定义:

{
        key: "contact_id",
        type: "string",
        label: 'Contact',
        required: true,
        helpText: "Pick the contact to update.",
        dynamic: "contact.id.name",
        altersDynamicFields: false
}
zapier zapier-cli
1个回答
1
投票

大卫来自Zapier平台团队。

根据the docs,您需要添加一个指向搜索键和id属性的search属性(如findContact.id)。加上dynamic将为您提供搜索按钮。

© www.soinside.com 2019 - 2024. All rights reserved.