<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to read outlook email from blue prism graph api - outlook email in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/How-to-read-outlook-email-from-blue-prism-graph-api-outlook/m-p/98749#M46429</link>
    <description>&lt;P&gt;&lt;BR /&gt;In Microsoft Graph, you have two main types of authentication:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Application Access Token&lt;/STRONG&gt;: Used when your application needs to access resources on behalf of itself, not on behalf of a specific user. This method is often used for background services or daemons.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Delegated Access Token&lt;/STRONG&gt;: Used when your application needs to access resources on behalf of a user. This means the user's permissions are taken into account, and the application can only do what the user is allowed to do.&lt;/P&gt;
&lt;P&gt;For reading and writing emails using Microsoft Graph in Azure, you'll need to set the following permissions:&lt;/P&gt;
&lt;P&gt;For Application Permissions (without a signed-in user):&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Mail.ReadWrite &lt;/EM&gt;- Allows the app to read, update, create, and delete email in all mailboxes without a signed-in user.&lt;BR /&gt;&lt;EM&gt;Mail.Send&lt;/EM&gt; - Allows the app to send mail as any user without a signed-in user.&lt;BR /&gt;For Delegated Permissions (on behalf of a signed-in user):&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Mail.ReadWrite&lt;/EM&gt; - Allows the app to read, update, create, and delete the signed-in user's email.&lt;BR /&gt;&lt;EM&gt;Mail.Send &lt;/EM&gt;- Allows the app to send mail as the signed-in user.&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Use the Microsoft Authentication Library API,&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/msalnet"&gt;MSAL&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;to acquire the access token to Microsoft Graph.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 15 Nov 2023 16:31:52 GMT</pubDate>
    <dc:creator>jsantiago08</dc:creator>
    <dc:date>2023-11-15T16:31:52Z</dc:date>
    <item>
      <title>How to read outlook email from blue prism graph api - outlook email</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-read-outlook-email-from-blue-prism-graph-api-outlook/m-p/98748#M46428</link>
      <description>&lt;DIV&gt;Hi team,&lt;/DIV&gt;
&lt;DIV&gt;&lt;BR /&gt;I need to read email from office 365 outlook , and move emails to different folders.&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;what i understand &amp;nbsp;we need to use Microsoft graph authentication. but &amp;nbsp;which one Get application access token or &amp;nbsp;delegated access token&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;what permissions i need to give &amp;nbsp;in azure to read write emails&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;after authentication object &amp;nbsp;what object do i need to use&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Function for Microsoft 365 - Outlook - 1.3.2 ??&lt;/DIV&gt;</description>
      <pubDate>Wed, 15 Nov 2023 08:20:17 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-read-outlook-email-from-blue-prism-graph-api-outlook/m-p/98748#M46428</guid>
      <dc:creator>vineetkumar</dc:creator>
      <dc:date>2023-11-15T08:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to read outlook email from blue prism graph api - outlook email</title>
      <link>https://community.blueprism.com/t5/Product-Forum/How-to-read-outlook-email-from-blue-prism-graph-api-outlook/m-p/98749#M46429</link>
      <description>&lt;P&gt;&lt;BR /&gt;In Microsoft Graph, you have two main types of authentication:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Application Access Token&lt;/STRONG&gt;: Used when your application needs to access resources on behalf of itself, not on behalf of a specific user. This method is often used for background services or daemons.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Delegated Access Token&lt;/STRONG&gt;: Used when your application needs to access resources on behalf of a user. This means the user's permissions are taken into account, and the application can only do what the user is allowed to do.&lt;/P&gt;
&lt;P&gt;For reading and writing emails using Microsoft Graph in Azure, you'll need to set the following permissions:&lt;/P&gt;
&lt;P&gt;For Application Permissions (without a signed-in user):&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Mail.ReadWrite &lt;/EM&gt;- Allows the app to read, update, create, and delete email in all mailboxes without a signed-in user.&lt;BR /&gt;&lt;EM&gt;Mail.Send&lt;/EM&gt; - Allows the app to send mail as any user without a signed-in user.&lt;BR /&gt;For Delegated Permissions (on behalf of a signed-in user):&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Mail.ReadWrite&lt;/EM&gt; - Allows the app to read, update, create, and delete the signed-in user's email.&lt;BR /&gt;&lt;EM&gt;Mail.Send &lt;/EM&gt;- Allows the app to send mail as the signed-in user.&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Use the Microsoft Authentication Library API,&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/9648/solution/msalnet"&gt;MSAL&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;to acquire the access token to Microsoft Graph.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2023 16:31:52 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/How-to-read-outlook-email-from-blue-prism-graph-api-outlook/m-p/98749#M46429</guid>
      <dc:creator>jsantiago08</dc:creator>
      <dc:date>2023-11-15T16:31:52Z</dc:date>
    </item>
  </channel>
</rss>

