从提交的表单数据中提取表单附件

上次更新: 2023-11-30
  • 创建对象:
  • Beginner
    Intermediate
    Developer

在power automate工作流中提取表单附件并通过电子邮件发送附件。
以下视频介绍根据提交的数据形成附件所需的步骤。

以下是您需要在“解析JSON架构”步骤中使用的附件对象架构

{
    "type": "object",
    "properties": {
        "filename": {
            "type": "string"
        },
        "data": {
            "type": "string"
        },
        "contentType": {
            "type": "string"
        },
        "size": {
            "type": "integer"
        }
    }
}

在此页面上