Hello,
I am using the “Create a Task in Asana from a Teams Message” function. I have added the ability to choose multiple users to assign the task to. This Workflow is working whenever I choose to assign a task to only one of the three users in the drop down options menu. But every time I choose all three users the workflow does not operate the task and I get the error message.
{
“errors”: [
{
“message”: "assignee: Not a user in Organization: firstnameA.lastnameA@companyDotsoon,firstnameB.lastnameB@companyDotsoon,firstnameC.lastnameC@companyDotsoon ",
“help”: “For more information on API status codes and how to handle them, read the docs on errors: Errors”
}
]
}
Here is the code for the adaptive card that has multiselect enabled:
“type”: “Input.ChoiceSet”,
“label”: “Please assign the task to an employee”,
“id”: “Choice”,
“placeholder”: “Multiple choices allowed…”,
“spacing”: “Medium”,
“isRequired”: true,
“ismultiSelect”: true,
“choices”: [
{
“title”: “Worker1”,
“value”: “xx.xxx@yyyDotsoon”
},
{
“title”: “Worker2”,
“value”: “aa.bbb@yyyDotsoon”
},
{
“title”: “Worker3”,
“value”: “cc.ddd@yyyDotsoon”
}
],
“errorMessage”: “Choose an employee!”
I am using the following dynamic content function to link the three employees of the adaptive card to the asana/teams workflow step:
I can’t see where went wrong here…
Appreciate any help.