What I'm doing:
I'm currently trying to create a chatbot in Copilot Studio for internal Orders. User can select which Product they want to buy.
What I want:
The copilot should give a list of options in a Question "Which one..?". The Chosen one (by the User) should be send to a PowerAutomate flow.
What's my Problem:
The Selection from User is saved as a "choice" instead of a "string". And my PowerAutomate Flow want a string so I get an "BindingIncorrectTypeError". Unfortunately theres no Option "Save Choice as String" or "Convert to String" BindingIncorrectTypeError
The only solution which worked so far:
for each Option, create a if condition. There set a string Variable "KeyboardChoiceUser" with the Value. But then the flow has hardcoded parts and I cannot simply change the OptionsEmbeddedList. MySolution
My Question:
Is there a option I didn't see? If not, is there a better way than mine?