<?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: Is it possible to bulk upload records to Creatio using a custom action? If so what's the JSON La in Workato Pros Discussion Board</title>
    <link>https://systematic.workato.com/t5/workato-pros-discussion-board/is-it-possible-to-bulk-upload-records-to-creatio-using-a-custom/m-p/9488#M3885</link>
    <description>&lt;P&gt;Thank you for this! I think this solution is what I was looking for but I think the truth of it is that bulk uploading to Creatio through Workato is simply not possible.&lt;/P&gt;</description>
    <pubDate>Tue, 01 Apr 2025 08:32:44 GMT</pubDate>
    <dc:creator>PhilipMasters</dc:creator>
    <dc:date>2025-04-01T08:32:44Z</dc:date>
    <item>
      <title>Is it possible to bulk upload records to Creatio using a custom action? If so what's the JSON Layout</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/is-it-possible-to-bulk-upload-records-to-creatio-using-a-custom/m-p/9420#M3858</link>
      <description>&lt;P&gt;So I am experimenting with bulk uploading to Creatio using a HTTP POST under Custom Action. I take a bunch of records and split them into batches and can succesfully loop through them. Through some editing I am able to get a variable resembling the below that I thought was the correct way of uploading multiple files to Creatio:&lt;BR /&gt;{&lt;BR /&gt;"records": [&lt;BR /&gt;{&lt;BR /&gt;"code": "test1",&lt;BR /&gt;"name": "test1"&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"code": "test2",&lt;BR /&gt;"name": "test2"&lt;BR /&gt;}&lt;BR /&gt;]&lt;BR /&gt;}&lt;BR /&gt;I'm having two issues, firstly how do I pass this entire records list into a JSON payload? The only obvious way of passing datapills I have found is by setting up the fields manually but then I can only select one value at a time (e.g. I could define name as a field, but then I can't pass multiple records through this, if that makes sense, at least it not in the current format).&lt;BR /&gt;&lt;BR /&gt;Secondly, I have tried instead just copy and paste the values into a JSON payload just to test if bulk uploading works however I get a lot of JSON errors. The first being that the schema is incorrect so I have also tried:&lt;BR /&gt;{&lt;BR /&gt;"schema": [&lt;BR /&gt;{&lt;BR /&gt;"name": "code",&lt;BR /&gt;"type": "string",&lt;BR /&gt;"optional": false,&lt;BR /&gt;"control_type": "text",&lt;BR /&gt;"label": "Code"&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"name": "name",&lt;BR /&gt;"type": "string",&lt;BR /&gt;"optional": false,&lt;BR /&gt;"control_type": "text",&lt;BR /&gt;"label": "Name"&lt;BR /&gt;}&lt;BR /&gt;],&lt;BR /&gt;"records": [&lt;BR /&gt;{&lt;BR /&gt;"code": "test1",&lt;BR /&gt;"name": "test1"&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"code": "test2",&lt;BR /&gt;"name": "test2"&lt;BR /&gt;}&lt;BR /&gt;]&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;But this gives 'Schema should be an array of objects' and I can't seem to find a layout that works. If anyone knows either how to pass a datapill into a JSON payload in the format I've given or alternatively how a Creatio payload should be laid out this would be much appreciated!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2025 17:50:24 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/is-it-possible-to-bulk-upload-records-to-creatio-using-a-custom/m-p/9420#M3858</guid>
      <dc:creator>PhilipMasters</dc:creator>
      <dc:date>2025-03-26T17:50:24Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to bulk upload records to Creatio using a custom action? If so what's the JSON La</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/is-it-possible-to-bulk-upload-records-to-creatio-using-a-custom/m-p/9427#M3859</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/11611"&gt;@PhilipMasters&lt;/a&gt;,&lt;BR /&gt;From the JSON payload which you have shared, &lt;STRONG&gt;records element&lt;/STRONG&gt; is a List of object type.&lt;BR /&gt;You can create a List variable of object type with required fields.&lt;BR /&gt;Once the List is created and added with required values. You can directly pass this variable to the &lt;STRONG&gt;records datapill&amp;nbsp;&lt;/STRONG&gt;defined in the custom action.&lt;BR /&gt;&lt;BR /&gt;Could you please share the documentation which you are referring to about bulk creation to understand the behavior of the API.&lt;BR /&gt;Regards,&lt;BR /&gt;Prudvi&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Thu, 27 Mar 2025 08:43:24 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/is-it-possible-to-bulk-upload-records-to-creatio-using-a-custom/m-p/9427#M3859</guid>
      <dc:creator>Prudvi</dc:creator>
      <dc:date>2025-03-27T08:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to bulk upload records to Creatio using a custom action? If so what's the JSON La</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/is-it-possible-to-bulk-upload-records-to-creatio-using-a-custom/m-p/9434#M3863</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/11611"&gt;@PhilipMasters&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Here are my answer for the following questions.&lt;BR /&gt;1.&amp;nbsp;&lt;SPAN&gt;firstly how do I pass this entire records list into a JSON payload?&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp;--&amp;gt; Since an Entire record will have similar structure, we can place the entire JSON payload in either in common data model&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;or Variable (data type: type list)&lt;BR /&gt;My suggestion would go with Common data model which can be re-used.&lt;BR /&gt;&lt;BR /&gt;2. For the second question:&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; Looks like you combined both Schema and the Input payload hence it may be reason you would have received an error.&lt;BR /&gt;&lt;BR /&gt;Adding screenshots for your reference.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Common data model.png" style="width: 999px;"&gt;&lt;img src="https://systematic.workato.com/t5/image/serverpage/image-id/1950i6541E37F6FA7A448/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Common data model.png" alt="Common data model.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mapping.png" style="width: 999px;"&gt;&lt;img src="https://systematic.workato.com/t5/image/serverpage/image-id/1951iBB2C251C9355259D/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="mapping.png" alt="mapping.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks and Regards,&lt;BR /&gt;Shivakumara K A&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Mar 2025 10:19:08 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/is-it-possible-to-bulk-upload-records-to-creatio-using-a-custom/m-p/9434#M3863</guid>
      <dc:creator>shivakumara</dc:creator>
      <dc:date>2025-03-27T10:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to bulk upload records to Creatio using a custom action? If so what's the JSON La</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/is-it-possible-to-bulk-upload-records-to-creatio-using-a-custom/m-p/9488#M3885</link>
      <description>&lt;P&gt;Thank you for this! I think this solution is what I was looking for but I think the truth of it is that bulk uploading to Creatio through Workato is simply not possible.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2025 08:32:44 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/is-it-possible-to-bulk-upload-records-to-creatio-using-a-custom/m-p/9488#M3885</guid>
      <dc:creator>PhilipMasters</dc:creator>
      <dc:date>2025-04-01T08:32:44Z</dc:date>
    </item>
  </channel>
</rss>

