最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Passing json as text from power apps to power automate - Stack Overflow

programmeradmin0浏览0评论

I am trying to pass a json object as string through power apps to power automate. The json has an attachment that the flow will mail. The flow runs successfully, however the attached file won't open.

ChangeOfBankingDetails.Run(
JSON(
    {
        acc_holder: txtAccountHolder.Text,
        acc_number: txtAccountNumber.Text,
        acc_type: cmbAccountType.Selected.Value,
        bank_name: cmbBankName.Selected.Value,
        brn_code: txtBankBranchCode.Text,
        brn_name: txtBankBranchName.Text,
        proof_of_account: {
            Name: First(attPOA.Attachments).Name,
            ContentBytes: First(attPOA.Attachments).Value
        }
    }
)

)

发布评论

评论列表(0)

  1. 暂无评论