MS Forms File Upload to SharePoint

Описание к видео MS Forms File Upload to SharePoint

How to save a file that's uploaded through a Microsoft Form to a SharePoint site in Microsoft 365. BTW, for the "Schema" in the Parse JSON action/step, you'll want to use this:

{

"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"
]
}
}

Комментарии

Информация по комментариям в разработке