<?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: Google Sheets API - Spreadsheets.value.update in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Google-Sheets-API-Spreadsheets-value-update/m-p/101036#M48139</link>
    <description>&lt;P&gt;Hello! &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;! I did everything as you said, and this part is ok! Thank you! You're awesome!&amp;nbsp;&lt;/P&gt;
​</description>
    <pubDate>Thu, 11 Mar 2021 15:57:48 GMT</pubDate>
    <dc:creator>GabrielMendonça</dc:creator>
    <dc:date>2021-03-11T15:57:48Z</dc:date>
    <item>
      <title>Google Sheets API - Spreadsheets.value.update</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Google-Sheets-API-Spreadsheets-value-update/m-p/101034#M48137</link>
      <description>&lt;P&gt;Hello everyone!&lt;BR /&gt;&lt;BR /&gt;I've started to use the Google API with BP recently, everything was fine, then I got this problem when I've tried to update the sheets I'm working with:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Internal : Unexpected error Error during Web API HTTP Request&lt;BR /&gt;HTTP Status Code: 400&lt;BR /&gt;HTTP Response Content: {&lt;BR /&gt;"error": {&lt;BR /&gt;"code": 400,&lt;BR /&gt;"message": "'valueInputOption' is required but not specified",&lt;BR /&gt;"status": "INVALID_ARGUMENT"&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;There is no parameters to uso this "valueInputOption".&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2021 16:18:20 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Google-Sheets-API-Spreadsheets-value-update/m-p/101034#M48137</guid>
      <dc:creator>GabrielMendonça</dc:creator>
      <dc:date>2021-03-10T16:18:20Z</dc:date>
    </item>
    <item>
      <title>Re: Google Sheets API - Spreadsheets.value.update</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Google-Sheets-API-Spreadsheets-value-update/m-p/101035#M48138</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="fcd036c1-aca2-4812-83e9-556383a12c15" data-tag-text="@Gabriel Mendonça" href="https://community.blueprism.com/network/profile?UserKey=fcd036c1-aca2-4812-83e9-556383a12c15" data-itemmentionkey="6040335f-d4a7-4533-9410-4cb32a6c566a"&gt;@Gabriel Mendonça&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;This is a bug on the skill. You can actually make a change to your copy to address it though. In Blue Prism, go to &lt;EM&gt;&lt;STRONG&gt;System&lt;/STRONG&gt;&lt;/EM&gt; -&amp;gt; &lt;EM&gt;&lt;STRONG&gt;Objects&lt;/STRONG&gt;&lt;/EM&gt; -&amp;gt; &lt;EM&gt;&lt;STRONG&gt;Web API Services&lt;/STRONG&gt;&lt;/EM&gt;. Scroll down to the Google Sheets API v4 service definition and double-click it. This will open the actual definition.&lt;BR /&gt;&lt;BR /&gt;In the list of actions on the left of dialog, scroll down to &lt;EM&gt;&lt;STRONG&gt;sheets.spreadsheets.values.update&lt;/STRONG&gt;&lt;/EM&gt;. Now click the &lt;EM&gt;&lt;STRONG&gt;Parameters&lt;/STRONG&gt;&lt;/EM&gt; option. Create a new input parameter called &lt;EM&gt;&lt;STRONG&gt;valueInputOption&lt;/STRONG&gt;&lt;/EM&gt; and make it type &lt;EM&gt;&lt;STRONG&gt;Text&lt;/STRONG&gt;&lt;/EM&gt;. You can also set an initial value if you like. The possible values for this input are either &lt;STRONG&gt;RAW&lt;/STRONG&gt; or &lt;STRONG&gt;USER_ENTERED&lt;/STRONG&gt;. I would probably set the initial value to USER_ENTERED. You can find out more about the meanings of each value &lt;A href="https://developers.google.com/sheets/api/reference/rest/v4/ValueInputOption" target="_blank" rel="noopener"&gt;here&lt;/A&gt; (if you're interested).&lt;BR /&gt;&lt;BR /&gt;Now that we have the new input parameter​, click on the &lt;EM&gt;&lt;STRONG&gt;Request&lt;/STRONG&gt;&lt;/EM&gt; entry (under &lt;EM&gt;&lt;STRONG&gt;Parameters&lt;/STRONG&gt;&lt;/EM&gt;) in the navigation tree on the left. You're going to edit the value of the &lt;EM&gt;&lt;STRONG&gt;URL Path&lt;/STRONG&gt;&lt;/EM&gt; field. Initially it looks something like this:&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;v4/spreadsheets/[spreadsheetId]/values/[range]?fields=[fields]​&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;You'll want to change it to something like this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE class="language-markup"&gt;&lt;CODE&gt;v4/spreadsheets/[spreadsheetId]/values/[range]?fields=[fields]&amp;amp;valueInputOption=[valueInputoption]&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BR /&gt;When you're done, click&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;OK&lt;/STRONG&gt;&lt;/EM&gt; in the bottom right of the dialog. You'll need to click the refresh button within your process if you left it open while making this change.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Eric</description>
      <pubDate>Wed, 10 Mar 2021 18:15:04 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Google-Sheets-API-Spreadsheets-value-update/m-p/101035#M48138</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2021-03-10T18:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: Google Sheets API - Spreadsheets.value.update</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Google-Sheets-API-Spreadsheets-value-update/m-p/101036#M48139</link>
      <description>&lt;P&gt;Hello! &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/833"&gt;@ewilson&lt;/a&gt;! I did everything as you said, and this part is ok! Thank you! You're awesome!&amp;nbsp;&lt;/P&gt;
​</description>
      <pubDate>Thu, 11 Mar 2021 15:57:48 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Google-Sheets-API-Spreadsheets-value-update/m-p/101036#M48139</guid>
      <dc:creator>GabrielMendonça</dc:creator>
      <dc:date>2021-03-11T15:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: Google Sheets API - Spreadsheets.value.update</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Google-Sheets-API-Spreadsheets-value-update/m-p/101037#M48140</link>
      <description>.ytytteyrh</description>
      <pubDate>Thu, 05 Aug 2021 23:06:56 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Google-Sheets-API-Spreadsheets-value-update/m-p/101037#M48140</guid>
      <dc:creator>ErjolaMema</dc:creator>
      <dc:date>2021-08-05T23:06:56Z</dc:date>
    </item>
  </channel>
</rss>

