Power Automate Adaptive Card click event

What to DO

・上記のように、adaptive cardのapproveをクリック後、Http RequestでAPIをコールして、APIのresponseをteamsに返信することを実現したい場合のメモ

Adaptive Card

{
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
    "type": "AdaptiveCard",
    "version": "1.5",
    "body": [
        {
            "type": "ColumnSet",
            "columns": [
                {
                    "type": "Column",
                    "width": "auto",
                    "items": [
                        {
                            "type": "Image",
                            "spacing": "None",
                            "style": "Person",
                            "selectAction": {
                                "type": "Action.OpenUrl",
                                "url": "@{triggerBody()?['{Link}']}"
                            },
                            "url": "https://x.gd/3Y9gV",
                            "size": "Medium",
                            "horizontalAlignment": "Left",
                            "backgroundColor": "bl"
                        }
                    ]
                },
                {
                    "type": "Column",
                    "width": "stretch",
                    "items": [
                        {
                            "type": "TextBlock",
                            "text": "Denodoシステムユーザー申請",
                            "style": "heading",
                            "size": "Large",
                            "fontType": "Default",
                            "weight": "Bolder",
                            "wrap": true
                        },
                        {
                            "type": "TextBlock",
                            "text": "申請者:@{triggerBody()?['Author']?['DisplayName']}",
                            "size": "Medium",
                            "wrap": true
                        },
                        {
                            "type": "TextBlock",
                            "text": "申請者部署長:@{triggerBody()?['boss_name']}",
                            "wrap": true,
                            "spacing": "Small"
                        },
                        {
                            "type": "TextBlock",
                            "text": "システム管理会社:@{triggerBody()?['company_name']}",
                            "wrap": true,
                            "spacing": "Small"
                        },
                        {
                            "type": "TextBlock",
                            "text": "利用したいデータ:@{triggerBody()?['apply_data']}",
                            "wrap": true,
                            "spacing": "Small"
                        },
                   {
                            "type": "TextBlock",
                            "text": "人事データ利用目的:@{triggerBody()?['o_group_user_purpose']}",
                            "wrap": true,
                            "spacing": "Small",
                            "color": "Attention"
                        },
                   {
                            "type": "TextBlock",
                            "text": "人事データ利用範囲:@{triggerBody()?['o_group_user_range']}",
                            "wrap": true,
                            "spacing": "Small",
                            "color": "Attention"
                        },
                        {
                            "type": "TextBlock",
                            "text": "基幹系システム・取引データ利用目的:@{triggerBody()?['o_torihiki']}",
                            "wrap": true,
                            "spacing": "Small",
                            "color": "Attention"
                        },
                        {
                            "type": "TextBlock",
                            "text": "基幹系システム・取引データ利用範囲:@{triggerBody()?['o_torihiki_range']}",
                            "wrap": true,
                            "spacing": "Small",
                            "color": "Attention"
                        },
                        {
                            "type": "TextBlock",
                            "text": "人事データ利用:@{triggerBody()?['if_o_group_user']?['Value']}",
                            "wrap": true,
                            "spacing": "Small",
                            "color": "Attention"
                        },

                        {
                            "type": "TextBlock",
                            "text": "基幹系システム・取引データ利用:@{triggerBody()?['if_o_torihiki']?['Value']}",
                            "wrap": true,
                            "spacing": "Small",
                            "color": "Attention"
                        },
                        {
                            "type": "TextBlock",
                            "text": "利用開始希望日:@{triggerBody()?['desired_date']}",
                            "wrap": true,
                            "spacing": "Small"
                        },
                        {
                            "type": "TextBlock",
                            "text": "IPアドレス:@{triggerBody()?['ip_address']}",
                            "wrap": true,
                            "spacing": "Small"
                        },
                        {
                            "type": "TextBlock",
                            "text": "VRデータ利用: @{triggerBody()?['if_vrtv_access']?['Value']}",
                            "wrap": true,
                            "spacing": "Small",
                            "color": "Attention"
                        },
                        {
                            "type": "TextBlock",
                            "text": "VRデータ利用目的: @{triggerBody()?['vrtv_purpose']}",
                            "wrap": true,
                            "spacing": "Small",
                            "color": "Attention"
                        },
                        {
                            "type": "TextBlock",
                            "text": "利用期間確認:@{triggerBody()?['Usage_period_check']?['Value']}",
                            "wrap": true,
                            "spacing": "Small",
                            "color": "Default"
                        },
                        {
                            "type": "TextBlock",
                            "text": "利用規約確認:@{triggerBody()?['terms_of_use_check']?['Value']}",
                            "wrap": true,
                            "spacing": "Small",
                            "color": "Default"
                        },
                        {
                            "type": "TextBlock",
                            "text": "データ追加申請:@{triggerBody()?['add_vdb_apply']?['Value']}",
                            "wrap": true,
                            "spacing": "Small",
                            "color": "Default"
                        },
                        {
                            "type": "TextBlock",
                            "text": "申請詳細確認:[Link To Sharepoint](@{triggerBody()?['{Link}']})",
                            "spacing": "Small",
                            "style": "default",
                            "fontType": "Default"
                        }
                    ]
                }
            ]
        },
        {
            "type": "ActionSet",
            "actions": [
                {
                    "type": "Action.Submit",
                    "title": "Approve",
                    "style": "positive",
                    "id": "approve"
                },
                {
                    "type": "Action.Submit",
                    "title": "Reject",
                    "style": "destructive",
                    "id": "Reject"
                }
            ],
            "horizontalAlignment": "Center"
        }
    ]
}
JavaScript

Button Click Action

・ボタンクリックは、Conditionで判定することができる

・条件分岐

body('Post_adaptive_card_and_wait_for_a_response')['submitActionId']
JavaScript

发表评论

您的邮箱地址不会被公开。 必填项已用 * 标注