我的zapier cli应用程序中有一个资源。在这个资源的创建规范中,有一些inputFields,其中一个是account_key(computed:true),我在之前的API调用中获得的值。我的问题是如何将account_key设置为我之前获取的值?
create: {
display: {
label: 'Create Client',
description: 'Creates a new client.',
},
operation: {
inputFields: [
{key: 'user_id', required: true, type: 'integer', label: 'User', dynamic: 'user.id.email'},
{key: 'account_key', required: true, type: 'string', label: 'Account Key', computed:true},
{key: 'address1', required: true, type: 'text', label: 'Address 1'}
],
perform: createClient,
sample: sample
},
},
答案 0 :(得分:-1)
David来自Zapier平台团队。
计算字段仅用于捕获OAuth和会话输出的输出。您的身份验证定义中的任何计算字段都将在bundle.authData
中提供。您不应该在行动中有明确的覆盖范围。
如果您有任何其他问题,请与我们联系!