在zapier-cli
应用程序上,如何在动态字段旁边创建Add a search step
按钮,该按钮将用于填充要更新的对象的ID,例如图像中的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
}
答案 0 :(得分:1)
Zapier Platform团队的David在这里。
每the docs,您需要添加一个指向搜索键和id属性的search
属性(例如findContact.id
)。加上dynamic
即可为您提供搜索按钮。