Hi @tareenmj - thanks for the question and cool use case! I didn't know files can now be submitted in Microsoft Forms! 💚
The add a screenshot... response contains a number of metadata on the file. There are two steps you need to add to your flow to get the image content.
1. A Parse JSON action. Select the add a screenshot... field for Content. And add the following for 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"
]
}
}
2. Add a Get file content action from the OneDrive for Business connector to get the actual image that was uploaded on the Form. Use the id output coming from the 'Parse JSON' action for the File input.
3. You can then use the file content output from the previous OneDrive action in the AI Builder OCR action.

Let us know if this works for you!