Announcements
I have an MS Form that includes an attachment section. I need to automatically transfer any attachments submitted through the form to a SharePoint list.
I have already created an automation flow for transferring data, but how can I add an attachment?
Hi @mihiranP ,
I've made a test for your reference:
JSON Schema
{
"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"
]
}
}
Best Regards,
Bof
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.