<?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: Insert &amp;quot;Batch of Rows&amp;quot; to Airtable in Workato Pros Discussion Board</title>
    <link>https://systematic.workato.com/t5/workato-pros-discussion-board/insert-quot-batch-of-rows-quot-to-airtable/m-p/5434#M2400</link>
    <description>&lt;P&gt;AirTable has a restriction on how many INSERTS can occur in a time-frame. So I decided to insert 1 at a time in a loop, and include a WAIT delay to insert slowly.&lt;/P&gt;</description>
    <pubDate>Wed, 18 Oct 2023 14:07:43 GMT</pubDate>
    <dc:creator>dunncrew</dc:creator>
    <dc:date>2023-10-18T14:07:43Z</dc:date>
    <item>
      <title>Insert "Batch of Rows" to Airtable</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/insert-quot-batch-of-rows-quot-to-airtable/m-p/5385#M2377</link>
      <description>&lt;P&gt;Hi, When writing records to SQL, I see an option to insert a "Batch of Rows", but I don't see that "batch" option in Airtable, so I am guessing I have to write 1 row at a time somehow ? Probably just 10 - 20 records when it runs.&lt;/P&gt;&lt;P&gt;Any suggestions?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Oct 2023 17:57:35 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/insert-quot-batch-of-rows-quot-to-airtable/m-p/5385#M2377</guid>
      <dc:creator>dunncrew</dc:creator>
      <dc:date>2023-10-12T17:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: Insert "Batch of Rows" to Airtable</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/insert-quot-batch-of-rows-quot-to-airtable/m-p/5387#M2378</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/9690"&gt;@dunncrew&lt;/a&gt;! The Workato connector for Airtable natively supports creating 1 record at a time... &lt;EM&gt;but&lt;/EM&gt; it also includes a Custom Action, which you could use to insert a batch of records (up to 10 at a time, according to &lt;A href="https://airtable.com/developers/web/api/create-records" target="_self"&gt;Airtable's API documentation&lt;/A&gt;). Instructions:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Add action to your recipe (app = Airtable, action = Custom Action)&lt;/LI&gt;&lt;LI&gt;In the action setup, click Start Guided setup&lt;/LI&gt;&lt;LI&gt;Method = POST&lt;/LI&gt;&lt;LI&gt;Path =&amp;nbsp;&lt;A href="https://api.airtable.com/v0/{baseId}/{tableIdOrName}" target="_blank" rel="noopener"&gt;https://api.airtable.com/v0/{baseId}/{tableIdOrName}&amp;nbsp;&lt;/A&gt;&lt;/LI&gt;&lt;LI&gt;Request body =&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
    "records": [
      {
        "fields": {
          "Address": "333 Post St",
          "Name": "Union Square",
          "Visited": true
        }
      },
      {
        "fields": {
          "Address": "1 Ferry Building",
          "Name": "Ferry Building"
        }
      }
    ]
  }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;6. Response body =&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{
  "records": [
    {
      "createdTime": "2022-09-12T21:03:48.000Z",
      "fields": {
        "Address": "333 Post St",
        "Name": "Union Square",
        "Visited": true
      },
      "id": "rec560UJdUtocSouk"
    },
    {
      "createdTime": "2022-09-12T21:03:48.000Z",
      "fields": {
        "Address": "1 Ferry Building",
        "Name": "Ferry Building"
      },
      "id": "rec3lbPRG4aVqkeOQ"
    }
  ]
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That should do the trick — lmk if any issues!&lt;/P&gt;</description>
      <pubDate>Thu, 12 Oct 2023 19:42:28 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/insert-quot-batch-of-rows-quot-to-airtable/m-p/5387#M2378</guid>
      <dc:creator>GrailAutomation</dc:creator>
      <dc:date>2023-10-12T19:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: Insert "Batch of Rows" to Airtable</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/insert-quot-batch-of-rows-quot-to-airtable/m-p/5388#M2379</link>
      <description>&lt;P&gt;Oh — also worth noting the Airtable API supports syncing up to 10K rows if you &lt;A href="https://airtable.com/developers/web/api/post-sync-api-endpoint" target="_self"&gt;push a CSV&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Oct 2023 19:34:30 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/insert-quot-batch-of-rows-quot-to-airtable/m-p/5388#M2379</guid>
      <dc:creator>GrailAutomation</dc:creator>
      <dc:date>2023-10-12T19:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: Insert "Batch of Rows" to Airtable</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/insert-quot-batch-of-rows-quot-to-airtable/m-p/5434#M2400</link>
      <description>&lt;P&gt;AirTable has a restriction on how many INSERTS can occur in a time-frame. So I decided to insert 1 at a time in a loop, and include a WAIT delay to insert slowly.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 14:07:43 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/insert-quot-batch-of-rows-quot-to-airtable/m-p/5434#M2400</guid>
      <dc:creator>dunncrew</dc:creator>
      <dc:date>2023-10-18T14:07:43Z</dc:date>
    </item>
  </channel>
</rss>

