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

提取表单附件并在电子邮件中以电源自动化工作流发送附件。
以下视频介绍从提交的数据构建附件所需的步骤。

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

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

在此页面上