Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 598 Bytes

File metadata and controls

30 lines (24 loc) · 598 Bytes
description Automatically generated file. DO NOT MODIFY
const options = {
	authProvider,
};

const client = Client.init(options);

const replyAll = {
    message: {
      attachments: [
        {
          '@odata.type': '#microsoft.graph.fileAttachment',
          name: 'guidelines.txt',
          contentBytes: 'bWFjIGFuZCBjaGVlc2UgdG9kYXk='
        }
      ]
    },
    comment: 'Please take a look at the attached guidelines before you decide on the name.'
};

await client.api('/me/messages/AAMkADA1MTAAAH5JaKAAA=/replyAll')
	.version('beta')
	.post(replyAll);