Hello everyone,
I am working on a project that involves using Adaptive Cards. I need to assign a specific link to each choice in a dropdown menu within an Adaptive Card. Below is the code for the Adaptive Card:
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.5",
"body": [
{
"type": "Input.ChoiceSet",
"id": "category",
"label": "Explore the categories",
"placeholder": "Select...",
"choices": [
{
"title": "Beauty and SPA",
"value": "Beauty and SPA"
},
{
"title": "Fashion",
"value": "Fashion"
},
{
"title": "Hotels and Tourism",
"value": "Hotels and Tourism"
},
{
"title": "Others",
"value": "Others"
},
{
"title": "Shipping and Cargo",
"value": "Shipping and Cargo"
},
{
"title": "Sports and Entertainment",
"value": "Sports and Entertainment"
}
]
}
],
"actions": [
{
"type": "Action.OpenUrl",
"title": "View Offers",
"url": "https://www.google.com/"
}
]
}
Has anyone implemented a similar feature? If so, could you share your approach or provide any resources or examples?
Thank you for your assistance!
Best regards,