
Announcements
I've tried to use all available KB and forum content before asking but essentially, the goal is to create a link to an uploaded attachment from a Microsoft Form that goes to a Sharepoint or Onedrive folder then reference that link in a Sharepoint list item and e-mail.
The common remedy seemed to be to use a Compose/Variable step to create the int64 format demanded of the filepath string but that creates errors of its own when attempting to convert. Is there another way to resolve this? Thanks tremendously in advance.FLOW AS INTENDED
FLOW ERROR
Hi @DavidLNYC ,
Do you want to get the share link of attachments uploaded by MS Forms?
I have made a simple test for your reference.
1. Here is my list.
2. Here is my MS Forms.
3. Here is my Flow.
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"
]
}
}
Result Screenshot:
Best Regards,
Charlie Choi