2
votes

I'm trying to copy an email from my inbox to the inbox of the group I'm the owner of, but i cannot get the group mail folders to read their id.

I'm looking for something similar to this api call : https://graph.microsoft.com/v1.0/me/mailFolders but instead of user mail folders i need the group mail folders.

Thank you.

1

1 Answers

2
votes

It isn't possible to copy an email from one mailbox (yours) to another's (the group's). You need to forward the message to the Group:

POST https://graph.microsoft.com/v1.0/me/messages/{id}/forward
Content-type: application/json

{
  "toRecipients": [
    {
      "emailAddress": {
        "address": "{group's email address"
      }
    }
  ]
}