I want to display in zapier Action dynamic field tag list , So User can select multiple tag from tag list.
Right now user can select only one tag.
My code is as below:
return z.request(options)
.then((response) => {
response.throwForStatus();
const result = z.JSON.parse(response.content);
results=result.data;
// z.console.log(results)
const field = { key: 'tag_id',label:'Tag List',choices: results.map(item => {
return {
value: item.tag,
label: item.id,
}
}) }
return field;
});
Question
Dynamic field with multiple select option.
This post has been closed for comments. Please create a new post if you need help or have a question about this topic.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.