<?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 VLAN Profiles Action Batch in Network Platform API</title>
    <link>https://community.cisco.com/t5/network-platform-api/vlan-profiles-action-batch/m-p/5414617#M2598</link>
    <description>&lt;P&gt;Hi, I was trying to create some action batches to set network plan profiles but when I try to submit the batch I always got error 500.&lt;/P&gt;&lt;P&gt;This is a sample payload :&lt;/P&gt;&lt;PRE class="lia-code-sample language-javascript"&gt;&lt;CODE&gt;{
    "confirmed": false,
    "synchronous": false,
    "actions": [
        {
            "resource": "/networks/***redacted***/vlanProfiles",
            "operation": "create",
            "body": {
              "iname": "Test",
              "name": "Test Profile",
              "vlanGroups": [],
              "vlanNames": [
                {
                    "name": "test",
                    "vlanId": "100"
                }
              ]
            }
          }
    ]
}&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Any suggestion?&lt;/P&gt;</description>
    <pubDate>Fri, 29 Mar 2024 08:55:23 GMT</pubDate>
    <dc:creator>francesco.boscarino</dc:creator>
    <dc:date>2024-03-29T08:55:23Z</dc:date>
    <item>
      <title>VLAN Profiles Action Batch</title>
      <link>https://community.cisco.com/t5/network-platform-api/vlan-profiles-action-batch/m-p/5414617#M2598</link>
      <description>&lt;P&gt;Hi, I was trying to create some action batches to set network plan profiles but when I try to submit the batch I always got error 500.&lt;/P&gt;&lt;P&gt;This is a sample payload :&lt;/P&gt;&lt;PRE class="lia-code-sample language-javascript"&gt;&lt;CODE&gt;{
    "confirmed": false,
    "synchronous": false,
    "actions": [
        {
            "resource": "/networks/***redacted***/vlanProfiles",
            "operation": "create",
            "body": {
              "iname": "Test",
              "name": "Test Profile",
              "vlanGroups": [],
              "vlanNames": [
                {
                    "name": "test",
                    "vlanId": "100"
                }
              ]
            }
          }
    ]
}&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Any suggestion?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Mar 2024 08:55:23 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/vlan-profiles-action-batch/m-p/5414617#M2598</guid>
      <dc:creator>francesco.boscarino</dc:creator>
      <dc:date>2024-03-29T08:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: VLAN Profiles Action Batch</title>
      <link>https://community.cisco.com/t5/network-platform-api/vlan-profiles-action-batch/m-p/5414618#M2599</link>
      <description>&lt;P&gt;Everything seems fine, action batches gave me a hard time and I stopped trying to use them. Instead I work with meraki.aio library and make concurrent calls for &lt;SPAN&gt;efficiency&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Mar 2024 10:17:15 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/vlan-profiles-action-batch/m-p/5414618#M2599</guid>
      <dc:creator>rares-pauna</dc:creator>
      <dc:date>2024-03-29T10:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: VLAN Profiles Action Batch</title>
      <link>https://community.cisco.com/t5/network-platform-api/vlan-profiles-action-batch/m-p/5414619#M2600</link>
      <description>&lt;P&gt;In general regarding actionbatches there are two ways to run them; synchronous or asynchronous. Running them synchronous means they are pushed in the order as the are appended in the actions. Asynchronous they are pushed in whatever order. And either way they aren't pushed unless "confirmed" is set to True.&lt;/P&gt;&lt;P&gt;You submit a batch that is supposed to run, and it returns an ID. You then check on that ID to make sure it's actually completed or not.&lt;/P&gt;&lt;P&gt;I think the payload looks good enough. Are you running it synchronous? And how many actions are there? Synchronous mode, only supports up to 20 actions, so you'll need to split it up in chunks.&lt;/P&gt;&lt;P&gt;Perhaps also use True/False, and not true/false (first letter capital).&lt;/P&gt;</description>
      <pubDate>Fri, 29 Mar 2024 19:24:01 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/vlan-profiles-action-batch/m-p/5414619#M2600</guid>
      <dc:creator>Rasmus Hoffmann Birkelund</dc:creator>
      <dc:date>2024-03-29T19:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: VLAN Profiles Action Batch</title>
      <link>https://community.cisco.com/t5/network-platform-api/vlan-profiles-action-batch/m-p/5414620#M2601</link>
      <description>&lt;P&gt;I need action batches as I need to push configuration changes for thousands of networks. &lt;/P&gt;&lt;P&gt;As the sample payload I use asynchronous call (cannot wait) and I already manage the returned ID to check status. &lt;/P&gt;&lt;P&gt;The overall process works flawlessly, the issue is with this specific action batch which returns always error 500, regardless the way I try to configure it. &lt;/P&gt;</description>
      <pubDate>Fri, 29 Mar 2024 19:35:59 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/vlan-profiles-action-batch/m-p/5414620#M2601</guid>
      <dc:creator>francesco.boscarino</dc:creator>
      <dc:date>2024-03-29T19:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: VLAN Profiles Action Batch</title>
      <link>https://community.cisco.com/t5/network-platform-api/vlan-profiles-action-batch/m-p/5414621#M2602</link>
      <description>&lt;P&gt;Are VlanProfiles enabled on your organization in the early access API?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Mar 2024 19:52:31 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/vlan-profiles-action-batch/m-p/5414621#M2602</guid>
      <dc:creator>Rasmus Hoffmann Birkelund</dc:creator>
      <dc:date>2024-03-29T19:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: VLAN Profiles Action Batch</title>
      <link>https://community.cisco.com/t5/network-platform-api/vlan-profiles-action-batch/m-p/5414622#M2603</link>
      <description>&lt;P&gt;Is the network either a "combined" network or a "switch" network?&lt;/P&gt;&lt;P&gt;This is also an "Early Access" feature.  Have you got "Early Access" enabled for either the org or this network under Organization/Easy Access?&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PhilipDAth_0-1711836599287.png" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="image.png"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/263516i025E9725B38CCB79/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Mar 2024 22:10:22 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/vlan-profiles-action-batch/m-p/5414622#M2603</guid>
      <dc:creator>Philip D'Ath</dc:creator>
      <dc:date>2024-03-30T22:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: VLAN Profiles Action Batch</title>
      <link>https://community.cisco.com/t5/network-platform-api/vlan-profiles-action-batch/m-p/5414623#M2604</link>
      <description>&lt;P&gt;Hi, both Early Access and VLAN Profiles are enabled for the organization but still Error 500 from Meraki if trying to submit a batch with a VLAN Profile action.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Apr 2024 08:55:06 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-platform-api/vlan-profiles-action-batch/m-p/5414623#M2604</guid>
      <dc:creator>francesco.boscarino</dc:creator>
      <dc:date>2024-04-02T08:55:06Z</dc:date>
    </item>
  </channel>
</rss>

