Is there a way to get Attachments url from Microsoft Graph Subscription response?

1k Views Asked by At

I'm trying to include Microsoft Graph API mail subscription in a Javascript project with @microsoft/microsoft-graph-client, I get an object response (body, subject, cc, to ...etc) and a Boolean hasAttachments: true but the attachment url is nowhere to be found, is there a way to get these attachments ?

2

There are 2 best solutions below

0
On BEST ANSWER

Ok i tried this Graph API call using Javascript code and it's working for me (get the .txt file):

const options = { authProvider, }; 
const client = Client.init(options); 
let res = await client.api('/me/messages/AAMkAGRlNWM4Njk4LWY3NTYtNGE2MC05ZjQzLTg1YmM5YjIzNTRhMwBGAAAAAAA-L78mmzKFQ7FpvCcWkAziBwCUgufVfU8cSKxkYzIkrl81AAAAAAEMAACUgufVfU8cSKxkYzIkrl81AACABFjMAAA=/attachments/AAMkAGRlNWM4Njk4LWY3NTYtNGE2MC05ZjQzLTg1YmM5YjIzNTRhMwBGAAAAAAA-L78mmzKFQ7FpvCcWkAziBwCUgufVfU8cSKxkYzIkrl81AAAAAAEMAACUgufVfU8cSKxkYzIkrl81AACABFjMAAABEgAQAHhM4mZxBRNBqkVbYUzUcWA=').get(); 

and to convert the contentbytes and store it locally refer the related link - download attachments from mail using microsoft graph rest api as well.

1
On

when you got the message try this url GET /me/messages/{id}/attachments/{id}