Microsoft 365 and Office | Other
Miscellaneous topics that do not fit into specific categories.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have developed a solution where when a user submits a MS Form the details entered in that form would generate an email. In that form there is a question to upload documents, whereas all type of documents (Word, Excel, PDF) is accepted. And the user could upload multiple documents at once too
This is my flow.
JSON code is.
{
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"link": {
"type": "string"
},
"id": {
"type": "string"
},
"type": {},
"size": {
"type": "integer"
},
"referenceId": {
"type": "string"
},
"driveId": {
"type": "string"
},
"status": {
"type": "integer"
},
"uploadSessionUrl": {}
},
"required": [
"name",
"link",
"id",
"type",
"size",
"referenceId",
"driveId",
"status",
"uploadSessionUrl"
]
}
}
Compose Original File code expression is;
last(split(items('Apply_to_each')?['name'], '_'))
Locked Question. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.