如何将 Find/Search 步骤连接到更新步骤
How to Connect a Find/Search Step to an Update Step
在 zapier-cli
应用程序中,如何在动态字段旁边创建 Add a search step
按钮,该字段将用于填充要更新的对象的 ID,例如下面显示的图片,在 Zapier 的文档中有描述 https://zapier.com/help/how-connect-findsearch-step-update-step/ ?
这是我的InputField
定义:
{
key: "contact_id",
type: "string",
label: 'Contact',
required: true,
helpText: "Pick the contact to update.",
dynamic: "contact.id.name",
altersDynamicFields: false
}
来自 Zapier 平台团队的 David。
每个 the docs 你需要添加一个 search
属性 指向一个搜索键和 id 属性(如 findContact.id
)。加上 dynamic
将为您提供搜索按钮。
在 zapier-cli
应用程序中,如何在动态字段旁边创建 Add a search step
按钮,该字段将用于填充要更新的对象的 ID,例如下面显示的图片,在 Zapier 的文档中有描述 https://zapier.com/help/how-connect-findsearch-step-update-step/ ?
这是我的InputField
定义:
{
key: "contact_id",
type: "string",
label: 'Contact',
required: true,
helpText: "Pick the contact to update.",
dynamic: "contact.id.name",
altersDynamicFields: false
}
来自 Zapier 平台团队的 David。
每个 the docs 你需要添加一个 search
属性 指向一个搜索键和 id 属性(如 findContact.id
)。加上 dynamic
将为您提供搜索按钮。