Hi Community,
I’m working with the Copilot Studio chat agent to upload files to Azure Blob Storage, but I’m facing an issue where the attachment object returned after uploading a file is missing critical data such as contentUrl
, contentType
, and the actual content
. The response I’m receiving looks like
{
"contentType": null,
"contentUrl": null,
"content": {
"kind": "conversationFileReference",
"value": "38643c48-2b6b-47b2-812d-754dac950c38"
},
"name": "17dc2d19-3ab6-4dfd-b886-a02c28a53f3c.png",
"thumbnailUrl": null
}
contentType
, contentUrl
, and content
fields are all missing or set to null
.It seems like the Copilot Studio chat agent is not returning the file content as expected.
Any insights or suggestions would be greatly appreciated!
Thanks
Sahad