ib bellad

ib bellad

  • 1.3k
  • 376
  • 33.6k

on clock of Action.Submit button redirect to lambda function url

Nov 3 2023 6:45 AM

Redirect with data object. Here is the code. Presntly it was not working

{
  "$schema": ".../schemas/adaptive-card.json",
  "type": "AdaptiveCard",
  "version": "1.0",
  "body": [
    {
      "type": "TextBlock",
      "spacing": "none",
      "text": "Click below to authenticate",
      "isSubtle": false,
      "wrap": true
    }
  ],
  "actions": [
    {
      "type": "Action.Submit",
      "title": "Click me for signin",
      "data": {
"email":"[email protected]",
        "msteams": {
            "type": "signin",
            "value": "my-lambda-function-url"
        }
      }
    }
  ]
}