Zapier CLI 允许您通过 inputFields
属性为 Zapier 应用定义输入字段。这些字段将在创建新 Zap 时显示给用户。然而,有时候您可能希望在创建新 Zap 时不显示某些字段。要实现这一点,您可以使用 hidden
属性。
以下是如何在 inputFields
中使用 hidden
属性的示例:
module.exports = {
// ...其他配置
inputFields: [
{
key: 'api_key',
label: 'API Key',
required: true,
type: 'string',
},
{
key: 'secret_key',
label: 'Secret Key',
required: true,
type: 'string',
hidden: true, // 将此字段隐藏
},
],
};
在这个例子中,api_key
字段将在创建新 Zap 时显示给用户,而 secret_key
字段将被隐藏。
领取专属 10元无门槛券
手把手带您无忧上云