<?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: Graph Connectors (Outlook and Excel) Questions in Digital Exchange</title>
    <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57208#M1440</link>
    <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1981"&gt;@john.hammond&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;That's an interesting error. The &lt;STRONG&gt;$ &lt;/STRONG&gt;is a feature that was introduced in C# v6 back in 2015, I think, for string interpolation. I assume you're on .NET Framework 4.7 or later, correct? C# v6 was introduced as part of .NET Framework 4.6.​&lt;BR /&gt;&lt;BR /&gt;You can remove it, but you'll have to change the whole string such that you'll be concatenating the parameters together with the string. Either that, or you can replace the &lt;STRONG&gt;$&lt;/STRONG&gt; with &lt;STRONG&gt;String.Format()&lt;/STRONG&gt;. Here are some examples:&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-csharp"&gt;&lt;CODE&gt;// Example 1: Concatenating parameters.
var url = "https://graph.microsoft.com/v1.0/sites/" + siteId + "/drives/" + driveId + "/" + folderPath + "/" + fileName + ":/createUploadSession";


// Example 2: String.Format()
var url = "https://graph.microsoft.com/v1.0" + String.Format("/sites/{0}/drives/{1}/{2}/{3}:/createUploadSession", siteId, driveId, folderPath, fileName);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;Regarding the &lt;EM&gt;&lt;STRONG&gt;Type&lt;/STRONG&gt;&lt;/EM&gt; parameter in the Excel connector, this refers to whether you're trying to work with a spreadsheet that stored in a user drive, group drive, or SharePoint drive. If you take a look at the Microsoft Graph API you'll see they expose multiple endpoints for just about every action depending on the data you're trying to work with. So, as an example, if you wanted to worked with an Excel spreadsheet that was stored on a SharePoint site you would set &lt;STRONG&gt;Type&lt;/STRONG&gt; to &lt;STRONG&gt;site&lt;/STRONG&gt;. What this ends up dong behind the scenes is changing the underlying URL path that's used in the REST request.&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;Cheers,&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Tue, 23 Aug 2022 14:58:00 GMT</pubDate>
    <dc:creator>ewilson</dc:creator>
    <dc:date>2022-08-23T14:58:00Z</dc:date>
    <item>
      <title>Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57203#M1435</link>
      <description>Afternoon all.&lt;BR /&gt;&lt;BR /&gt;We're starting to experiment with Graph API and starting to get somewhere, particularly on the SharePoint side of things. Although I'm still having a few difficulties with some of the other connectors from the DX, and having searched for these issues I can't see them mentioned anywhere on these forums. Could just be me being extremely daft, but I was wondering if anyone could lend me a hand in understanding them a bit more:&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;- In MS Graph - Outlook, I'm able to do most things, however the 'List Messages in Folder' action seems to only return a maximum of 10 items. I've seen similar responses in SharePoint, but that had a 'GetNextToken' output parameter which I could use, but I cannot see this here. Alternatively, there does appear to be the object 'List Messages' which does have a NextLinkToken output, however the format of the emails pulled using this object is nowhere near as pleasant as the other object - as in, the entire message with all headers and css/html tags are contained within a single string, making it difficult and inefficient to search, for example, a subject line.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;- With Excel, a bit of a more fundamental issue this one - how do you open a file?! I'm able to download a file, which I could then feasibly use the Excel VBO to do any manipulation that I require before uploading it again and deleting the old version, but this seems like a very haphazard way of going about things. I assume that I need to rub the object 'Create Session'? If so, could I have a bit more of a clearer explanation as to the Input Parameters needed to identify the relevant file? I assume that 'ID' is the Site ID with Workbook ID the ID of the Excel file itself (found via Get Drive Items in SharePoint)?&lt;BR /&gt;&lt;BR /&gt;Many Thanks!&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Hammond&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 23 Aug 2022 12:48:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57203#M1435</guid>
      <dc:creator>john.hammond</dc:creator>
      <dc:date>2022-08-23T12:48:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57204#M1436</link>
      <description>&lt;BR /&gt;Hello John,&lt;BR /&gt;&lt;BR /&gt;First get the download link by one of request bellow then use action Utility File management - Download File by URL and Destination Path.&lt;BR /&gt;&lt;BR /&gt;[GraphApi - Path] &amp;amp; "/sites/" &amp;amp; [Site ID] &amp;amp; "/lists/{" &amp;amp; [List ID] &amp;amp; "}" &amp;amp; "/drive/items/" &amp;amp; [File ID] &amp;amp; "?select=id,@microsoft.graph.downloadUrl"&lt;BR /&gt;&lt;BR /&gt;[GraphApi - Path] &amp;amp; "/sites/" &amp;amp; [Site ID] &amp;amp; "/drives/" &amp;amp; [Drive ID] &amp;amp; "/items/" &amp;amp; [File ID] &amp;amp; "?select=id,@microsoft.graph.downloadUrl"&lt;BR /&gt;&lt;BR /&gt;V.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Vit Blazek&lt;BR /&gt;BluePrism Aplication Manager at CSOB,a.s.&lt;BR /&gt;Ceskoslovenska obchodni banka, a. s.&lt;BR /&gt;Europe/Prague&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 23 Aug 2022 12:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57204#M1436</guid>
      <dc:creator>Vit</dc:creator>
      <dc:date>2022-08-23T12:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57205#M1437</link>
      <description>Thank you for your prompt response V. Can I just ask though, is there not a pre-determined action within the Connector to do this? And does this not just download the file, which could be done using 'Microsoft Graph - Download Files' from the DX and then the action 'Download from SharePoint'?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Hammond&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 23 Aug 2022 13:07:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57205#M1437</guid>
      <dc:creator>john.hammond</dc:creator>
      <dc:date>2022-08-23T13:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57206#M1438</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1981"&gt;@john.hammond&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Regarding the &lt;EM&gt;&lt;STRONG&gt;List Messages in Folder&lt;/STRONG&gt;&lt;/EM&gt; action and &lt;STRONG&gt;GetNextToken&lt;/STRONG&gt;, that's an oversight on our part. Luckily enough we've undertaken an exercise over the next month or so to see what we can do to redesign the Excel and Outlook connectors for Graph to make them more user friendly. It will take a little time, but in the meantime we'll get an update posted in the next day or so to address the paging issue in that action.&lt;BR /&gt;&lt;BR /&gt;With Excel, yes you'll use &lt;EM&gt;&lt;STRONG&gt;Create Session&lt;/STRONG&gt;&lt;/EM&gt; to get your work started with a specific workbook. Check the embedded user guide on the connector for descriptions of the input fields.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7329.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/7506iA72137B225BFFCCA/image-size/large?v=v2&amp;amp;px=999" role="button" title="7329.png" alt="7329.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Cheers,​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 23 Aug 2022 13:24:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57206#M1438</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-23T13:24:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57207#M1439</link>
      <description>&lt;P&gt;Thanks for this Eric, and good news about the Outlook connector. I'll keep my eyes peeled for that one.&lt;BR /&gt;&lt;BR /&gt;As for the Excel documentation, I had looked at that, but I think it's just the last couple of parameters there that have confused me - For Workbook ID, I've navigated to the relevant folder using the SharePoint connector and have grabbed the 'id' value from that - so essentially, I'm treating 'Workbook ID' as 'File ID' - is that correct? Also, for the 'Type' parameter, I'm unsure what those values pertain to - whenever I try any of those suggested values (and assuming Workbook ID = File ID), stepping over the action returns this error message:&lt;BR /&gt;&lt;BR /&gt;Internal : Unexpected error Cannot execute action "Create Session" because an error occurred while compiling custom code. Errors were found in the following locations:&lt;BR /&gt;Shared code&lt;BR /&gt;&lt;BR /&gt;EDIT: Sorry to 'cross the streams', as it were, but I'm currently trying to configure 'Microsoft Graph - Sharepoint Upload Session' from the DX, but am getting a Compiler error (screenshot below). I've had a similar issue before, potentially down to the version of .NET framework we're running on. Am I OK to strip the dollar sign from this code? Only that when I do remove the character, I'm consistently presented with the following error message in the Response Body of the action 'Create Upload Session':&lt;BR /&gt;{"error":{"code":"BadRequest","message":"Resource not found for the segment '{folderPath}'.","innerError":{"date":"2022-08-23T14:19:44","request-id":"2e52c20c-e415-4092-a4fb-c0e7b769057d","client-request-id":"2e52c20c-e415-4092-a4fb-c0e7b769057d"}}}&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7330.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/7503iCC9ABE64CA716B93/image-size/large?v=v2&amp;amp;px=999" role="button" title="7330.png" alt="7330.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Hammond&lt;BR /&gt;------------------------------&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 13:35:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57207#M1439</guid>
      <dc:creator>john.hammond</dc:creator>
      <dc:date>2022-08-23T13:35:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57208#M1440</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1981"&gt;@john.hammond&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;That's an interesting error. The &lt;STRONG&gt;$ &lt;/STRONG&gt;is a feature that was introduced in C# v6 back in 2015, I think, for string interpolation. I assume you're on .NET Framework 4.7 or later, correct? C# v6 was introduced as part of .NET Framework 4.6.​&lt;BR /&gt;&lt;BR /&gt;You can remove it, but you'll have to change the whole string such that you'll be concatenating the parameters together with the string. Either that, or you can replace the &lt;STRONG&gt;$&lt;/STRONG&gt; with &lt;STRONG&gt;String.Format()&lt;/STRONG&gt;. Here are some examples:&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-csharp"&gt;&lt;CODE&gt;// Example 1: Concatenating parameters.
var url = "https://graph.microsoft.com/v1.0/sites/" + siteId + "/drives/" + driveId + "/" + folderPath + "/" + fileName + ":/createUploadSession";


// Example 2: String.Format()
var url = "https://graph.microsoft.com/v1.0" + String.Format("/sites/{0}/drives/{1}/{2}/{3}:/createUploadSession", siteId, driveId, folderPath, fileName);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;Regarding the &lt;EM&gt;&lt;STRONG&gt;Type&lt;/STRONG&gt;&lt;/EM&gt; parameter in the Excel connector, this refers to whether you're trying to work with a spreadsheet that stored in a user drive, group drive, or SharePoint drive. If you take a look at the Microsoft Graph API you'll see they expose multiple endpoints for just about every action depending on the data you're trying to work with. So, as an example, if you wanted to worked with an Excel spreadsheet that was stored on a SharePoint site you would set &lt;STRONG&gt;Type&lt;/STRONG&gt; to &lt;STRONG&gt;site&lt;/STRONG&gt;. What this ends up dong behind the scenes is changing the underlying URL path that's used in the REST request.&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;Cheers,&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 23 Aug 2022 14:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57208#M1440</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-23T14:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57209#M1441</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1981"&gt;@john.hammond&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Version 2.3.1 of the Outlook connector for Graph was posted to the DX tonight. It includes support for the &lt;STRONG&gt;NextLinkToken&lt;/STRONG&gt; output parameter on the &lt;EM&gt;&lt;STRONG&gt;List Messages in Folder&lt;/STRONG&gt;&lt;/EM&gt; action.​&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 23 Aug 2022 23:59:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57209#M1441</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-23T23:59:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57210#M1442</link>
      <description>Hi @Eric Wilson, thank you for your swift response.&lt;BR /&gt;&lt;BR /&gt;I do indeed see that the 'List Messages in Folder' action now has a NextLinkToken value returned, although it looks to me as if all response content is now compacted into a single field, much like how the 'List Messages' function did previously. I assume this has been done for reliability issues, but is there a 'legacy' version of what this action used to perform with the NextLinkToken parameter present? Or alternatively, is there perhaps a 'nice' way of unpacking this data?​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Hammond&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 26 Aug 2022 07:10:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57210#M1442</guid>
      <dc:creator>john.hammond</dc:creator>
      <dc:date>2022-08-26T07:10:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57211#M1443</link>
      <description>And thank you for this response also! I'll have a look at both of these at some point today.&lt;BR /&gt;&lt;BR /&gt;EDIT: Sorry @Eric Wilson, sent another reply to you regarding a potential missing dll which I now cannot find (in relation to the Excel connector). Found the dll and put it in the BP folder, but was still getting the issue. Investigated the Common Code for the Excel Graph API call and was presented with this message, if you have any ideas?!&lt;BR /&gt;&lt;BR /&gt;Also, just spoken to someone more in the know than myself, and apparently we might be using .NET framework 3.5 (!!!), which might be limiting my functionality somewhat.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7334.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/7509iFF3BF35E3B7979BC/image-size/large?v=v2&amp;amp;px=999" role="button" title="7334.png" alt="7334.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Hammond&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 26 Aug 2022 07:12:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57211#M1443</guid>
      <dc:creator>john.hammond</dc:creator>
      <dc:date>2022-08-26T07:12:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57212#M1444</link>
      <description>Hi again &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;.&lt;BR /&gt;&lt;BR /&gt;That issue I was having RE: Shared Code when opening a file using the Excel API appears to be linked to a missing dll from the object on the DX - should Newtonsoft.Json.dll be mentioned as a prerequisite/download?​​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Hammond&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 26 Aug 2022 07:45:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57212#M1444</guid>
      <dc:creator>john.hammond</dc:creator>
      <dc:date>2022-08-26T07:45:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57213#M1445</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1981"&gt;@john.hammond&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;The Newtonsoft JSON DLL should already be included in the Blue Prism Automate folder. Was there not one in yours?&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 26 Aug 2022 11:55:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57213#M1445</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-26T11:55:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57214#M1446</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1981"&gt;@john.hammond&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;I think I may have misunderstood your question. Are you saying you needed to add Newtonsoft to the Global Code section? But you only had to do it when this one action was added, and it continued to work find with the other actions that used it? &lt;span class="lia-unicode-emoji" title=":thinking_face:"&gt;🤔&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 26 Aug 2022 12:02:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57214#M1446</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-26T12:02:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57215#M1447</link>
      <description>Sorry @Eric Wilson, I'm not being particularly clear with my plethora of multiple questions. This issue relates to the Excel Connector for Graph. As of right now, I've not been able to get any functions working from this - whilst stepping through/over any stage within the Studio, I get the error message '&lt;SPAN&gt;Internal : Unexpected error Cannot execute action "Create Session" because an error occurred while compiling custom code. Errors were found in the following locations: &lt;/SPAN&gt;&lt;SPAN&gt;Shared code'&lt;/SPAN&gt;​​. When looking at the Common Code on the API definition section in System, and checking this code, I get the following error message:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7343.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/7517i407BE18D7E395C8E/image-size/large?v=v2&amp;amp;px=999" role="button" title="7343.png" alt="7343.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Hammond&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 26 Aug 2022 12:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57215#M1447</guid>
      <dc:creator>john.hammond</dc:creator>
      <dc:date>2022-08-26T12:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57216#M1448</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1981"&gt;@john.hammond&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;That's interesting. I don't receive that error when I use the Graph connector for Excel. What version of Blue Prism are you on? It must be at least v6.4 otherwise you wouldn't be able to use WebAPIs. Regarding the .NET Framework version, you should be on at least some variant of v4 (ex v4.7) as that has been the base requirement of the BP platform for a while now. I don't think the software will even function if you only have .NET 3.5 installed.&lt;BR /&gt;&lt;BR /&gt;Have you tried adding a reference to &lt;STRONG&gt;System.Core.dll&lt;/STRONG&gt; to the Global Code options?&lt;BR /&gt;&lt;BR /&gt;Cheers,​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 26 Aug 2022 15:02:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57216#M1448</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-26T15:02:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57217#M1449</link>
      <description>Hi @Eric Wilson, thanks again for your response to this. Not sure if you saw this message regarding the output of the new and improved 'List Messages in Folder' action for Outlook API ​on the DX. Is there a way for the data to unpacked in a more readable manner/collection as it was previously?&lt;BR /&gt;&lt;BR /&gt;Also, one other point - I noticed today that attachments have to be under a certain size to be sent using the Send Mail action (I tried sending a file which was around 6mb and received a HTTP error 419). I know that there is the chunking approach to uploading files larger than 4mb in SharePoint - is there something similar for email attachments?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Hammond&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 31 Aug 2022 08:36:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57217#M1449</guid>
      <dc:creator>john.hammond</dc:creator>
      <dc:date>2022-08-31T08:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57218#M1450</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1981"&gt;@john.hammond&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;There was a reason we moved away from returning the nicer Collection that, as I recall, had to do with Microsoft including an element in their response information that wasn't always set. If it wasn't set when the Collection (aka DataTable) was initially created​, a data type exception could be raised if a subsequent record actually included a value. So we switched to just returning the raw JSON of the individual messages. You can then use the &lt;STRONG&gt;Utility - JSON&lt;/STRONG&gt; VBO to turn it into something pretty.&lt;BR /&gt;&lt;BR /&gt;We can go back and take another look at it to see if there's something else we might do with it.&lt;BR /&gt;&lt;BR /&gt;Regarding attachments, Microsoft's &lt;A href="https://docs.microsoft.com/en-us/graph/api/resources/attachment?view=graph-rest-1.0" target="_blank" rel="noopener"&gt;Graph documentation&lt;/A&gt; states that attachments are limited to no more than 3MB when performing direct attach as part of the Send Message POST. That's what we currently support. There is an option to upload larger files (up to 150MB) by using upload sessions for attachments. We don't support that at the moment, but we'll get it in the backlog. For anything larger than 150MB, you'd probably have to create an upload session for OneDrive or SharePoint and then include the download URI of the file as the attachment in your email.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 01 Sep 2022 00:20:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57218#M1450</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-09-01T00:20:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57219#M1451</link>
      <description>Hi again @Eric Wilson. Apologies for the delay, but have finally got around to testing this again - the compiler error has disappeared, however FYI, in the latest release of the Graph Upload Sessions object on the DX, the code stage contains reference to the following on Line 4:&lt;BR /&gt;&lt;BR /&gt;long fileSize = new System.IO.FileInfo(@"C:\temp\3GB_TestFile.bin").Length;&lt;BR /&gt;&lt;BR /&gt;I assume this is something that was used in testing?​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Hammond&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Sep 2022 11:08:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57219#M1451</guid>
      <dc:creator>john.hammond</dc:creator>
      <dc:date>2022-09-12T11:08:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57220#M1452</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1981"&gt;@john.hammond&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Oops! &lt;span class="lia-unicode-emoji" title=":flushed_face:"&gt;😳&lt;/span&gt; It's fixed.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 12 Sep 2022 22:39:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57220#M1452</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-09-12T22:39:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57221#M1453</link>
      <description>Hi again @Eric Wilson. I'd just like to say thank you for your continued help and patience with trying to help me understand this! Added to my own lack of understanding, our Azure AD person is having some difficulty getting his head around this specific issue as well. When trying to create an Upload Session (or even use a regular upload using the SharePoint connector), I'm getting the following error message:&lt;BR /&gt;&lt;BR /&gt;​{"error":{"code":"accessDenied","message":"Access denied","innerError":{"date":"2022-09-14T07:40:35","request-id":"31699107-cc04-4a22-84d4-c219fd950ec4","client-request-id":"31699107-cc04-4a22-84d4-c219fd950ec4"}}}&lt;BR /&gt;&lt;BR /&gt;'Access Denied' is making me think that this is an AD-side issue, although apparently we have full Write access at the site level. Is there a specific permission that these actions require? The only other potential thing I can think that may be causing this is that the 'Auth Token' parameter requires a text data type, so just before the Create Upload Session action in my workflow I have a calculation that pulls the AccessToken password from the authenticator and writes it to a text data item. This then gets passed in. This is the correct way of doing this, right?&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="7366.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/7541i410A8BD8A46883E2/image-size/large?v=v2&amp;amp;px=999" role="button" title="7366.png" alt="7366.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Hammond&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 14 Sep 2022 07:51:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57221#M1453</guid>
      <dc:creator>john.hammond</dc:creator>
      <dc:date>2022-09-14T07:51:00Z</dc:date>
    </item>
    <item>
      <title>RE: Graph Connectors (Outlook and Excel) Questions</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57222#M1454</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/1981"&gt;@john.hammond&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;The Password​ data type in Blue Prism is nothing more than a Text item that only displays dots for characters. Under the hood, it's still regular text and that's the way the connector sees it. So there's no need to convert it.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;See this page from Microsoft regarding upload sessions and Graph. It lists the required permissions based on the type of token you're using (Application vs Delegated).&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://docs.microsoft.com/en-us/graph/api/driveitem-createuploadsession?view=graph-rest-1.0" target="_blank" rel="noopener"&gt;https://docs.microsoft.com/en-us/graph/api/driveitem-createuploadsession?view=graph-rest-1.0&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 14 Sep 2022 12:04:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Graph-Connectors-Outlook-and-Excel-Questions/m-p/57222#M1454</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-09-14T12:04:00Z</dc:date>
    </item>
  </channel>
</rss>

