I have a resource in my zapier cli app. In this resource's create specification, there are some inputFields, one of which is account_key (computed:true), the value of which I obtain during previous API call. My question is how can I set the account_key to a value I fetched previously?
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
},
},